1 21 22 package org.apache.derby.iapi.types; 23 24 import org.apache.derby.iapi.error.StandardException; 25 26 42 43 public interface Orderable 44 { 45 46 47 static final int ORDER_OP_LESSTHAN = 1; 48 49 static final int ORDER_OP_EQUALS = 2; 50 51 static final int ORDER_OP_LESSOREQUALS = 3; 52 53 58 59 static final int ORDER_OP_GREATERTHAN = 4; 60 61 static final int ORDER_OP_GREATEROREQUALS = 5; 62 63 64 } 65 | Popular Tags |