1 21 22 package org.apache.derby.iapi.store.access; 23 24 import org.apache.derby.iapi.types.DataValueDescriptor; 25 26 import org.apache.derby.iapi.error.StandardException; 27 28 171 172 173 public interface Qualifier 174 { 175 176 189 public static final int VARIANT = 0; 190 public static final int SCAN_INVARIANT = 1; 191 public static final int QUERY_INVARIANT = 2; 192 public static final int CONSTANT = 3; 193 194 202 int getColumnId(); 203 204 209 DataValueDescriptor getOrderable() throws StandardException; 210 211 215 int getOperator(); 216 217 222 boolean negateCompareResult(); 223 224 228 boolean getOrderedNulls(); 229 230 234 boolean getUnknownRV(); 235 236 245 void clearOrderableCache(); 246 247 248 259 void reinitialize(); 260 } 261 | Popular Tags |