javax.microedition.rms.RecordComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imp-1.0-stub Show documentation
Show all versions of imp-1.0-stub Show documentation
Stub of the Information Module Profile v1.0
The newest version!
package javax.microedition.rms;
public interface RecordComparator {
public static final int EQUIVALENT = 0;
public static final int FOLLOWS = 1;
public static final int PRECEDES = -1;
int compare(byte[] rec1, byte[] rec2);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy