1 21 22 package org.apache.derby.iapi.store.access; 23 24 import org.apache.derby.iapi.types.Orderable; 25 26 import org.apache.derby.iapi.error.StandardException; 27 28 import java.io.ObjectInput ; 29 import java.io.IOException ; 30 31 47 48 public interface BinaryOrderable extends Orderable 49 { 50 66 int binarycompare( 67 ObjectInput in, 68 Orderable other) 69 throws IOException ; 70 71 97 boolean binarycompare( 98 ObjectInput in, 99 int op, 100 Orderable other, 101 boolean orderedNulls, 102 boolean unknownRV) 103 throws IOException ; 104 } 105 | Popular Tags |