Package org.apache.jena.dboe.base.record
Class Record
java.lang.Object
org.apache.jena.dboe.base.record.Record
A record is pair of key and value. It may be all key, in which case value is null.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic intcompareByKey(Record record1, Record record2) static intcompareByKeyValue(Record record1, Record record2) booleanstatic booleanIs (key, value) of record1 equal to (key,value) of record2byte[]getKey()byte[]getValue()inthashCode()booleanstatic booleanIs the key of record1 == key of record2static booleanIs the key of record1 >= key of record2static booleanIs the key of record1 > key of record2static booleanIs the key of record1 <= key of record2static booleanIs the key of record1 < key of record2static booleanIs the key of record1 != key of record2static Stringstr(byte[] b) toString()
-
Field Details
-
NO_REC
-
-
Constructor Details
-
Record
public Record(byte[] key, byte[] value)
-
-
Method Details
-
getKey
public byte[] getKey() -
getValue
public byte[] getValue() -
hasSeparateValue
public boolean hasSeparateValue() -
hashCode
public int hashCode() -
equals
-
toString
-
keyEQ
Is the key of record1 == key of record2 -
keyNE
Is the key of record1 != key of record2 -
keyLT
Is the key of record1 < key of record2 -
keyLE
Is the key of record1 <= key of record2 -
keyGE
Is the key of record1 >= key of record2 -
keyGT
Is the key of record1 > key of record2 -
equals
Is (key, value) of record1 equal to (key,value) of record2 -
str
-
compareByKey
-
compareByKeyValue
-