View Javadoc
1 /* 2 * Created on 2003-6-6 15:05:39 by joel guo 3 * 4 * vTradEx Information Technology Inc. 5 */ 6 package com.cyclops.dbdigger.sql; 7 import com.cyclops.dbdigger.schema.Column; 8 /*** Add description <font color="red">HERE</font>! 9 * 10 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a> 11 * @since 2003-6-6 15:05:39 12 */ 13 public class Between extends Comparison { 14 /*** Empty Between object array */ 15 public static final Between[] EMPTY_ARRAY = new Between[0]; 16 /*** Between keyword as comparator */ 17 public static final String COMPARATOR = "BETWEEN"; 18 /*** Constructor of class Between 19 * @param column Database column 20 * @param from From value 21 * @param to To value 22 */ 23 public Between(Column column, Object from, Object to) { 24 super(column, new Object[] {from, to }, COMPARATOR); 25 } 26 }

This page was automatically generated by Maven