Package db
Class ByteField
- java.lang.Object
-
- db.Field
-
- db.ByteField
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class db.Field
Field.UnsupportedFieldException
-
-
Field Summary
Fields Change Modifier and Type Field Description NEW static ByteFieldINSTANCENEW static ByteFieldMAX_VALUEMaximum byte field valueNEW static ByteFieldMIN_VALUEMinimum byte field valueNEW static ByteFieldZERO_VALUEZero byte field value-
Fields inherited from class db.Field
EMPTY_ARRAY
-
-
Method Summary
All Methods Instance Methods Concrete Methods Change Modifier and Type Method Description intcompareTo(Field o)NEW ByteFieldcopyField()Create new instance of this field with the same value.booleanequals(java.lang.Object obj)byte[]getBinaryData()Get data as a byte array.bytegetByteValue()Get field as a byte value.longgetLongValue()Get field as a long value.java.lang.StringgetValueAsString()Get field value as a formatted stringinthashCode()MODIFIED ByteFieldnewField()Create new instance of this field type.voidsetBinaryData(byte[] bytes)Set data from binary byte array.voidsetByteValue(byte value)Set field's byte value.voidsetLongValue(long value)Set field's long value.java.lang.StringtoString()REMOVED FieldnewField(Field fieldValue) (Removed)-
Methods inherited from class db.Field
canIndex, getBooleanValue, getIntValue, getShortValue, getString, isSameType, isVariableLength, setBooleanValue, setIntValue, setShortValue, setString
-
-
-
-
Field Detail
-
MIN_VALUE NEW
public static final ByteField MIN_VALUE
Minimum byte field value
-
MAX_VALUE NEW
public static final ByteField MAX_VALUE
Maximum byte field value
-
ZERO_VALUE NEW
public static final ByteField ZERO_VALUE
Zero byte field value
Constructor Detail
-
ByteField
public ByteField()
Construct a byte field with an initial value of 0.
-
ByteField
public ByteField(byte b)
Construct a byte field with an initial value of b.- Parameters:
b- initial value
-
-
Method Detail
-
getByteValue
public byte getByteValue()
Description copied from class:FieldGet field as a byte value.- Overrides:
getByteValuein classField- Returns:
- byte value
-
setByteValue
public void setByteValue(byte value)
Description copied from class:FieldSet field's byte value.- Overrides:
setByteValuein classField- Parameters:
value- byte value
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getValueAsString
public java.lang.String getValueAsString()
Description copied from class:FieldGet field value as a formatted string- Specified by:
getValueAsStringin classField- Returns:
- field value string
-
compareTo
public int compareTo(Field o)
-
getLongValue
public long getLongValue()
Description copied from class:FieldGet field as a long value. All fixed-length field objects must implement this method- Overrides:
getLongValuein classField- Returns:
- long value
-
setLongValue
public void setLongValue(long value)
Description copied from class:FieldSet field's long value. All fixed-length field objects must implement this method- Overrides:
setLongValuein classField- Parameters:
value- long value
-
getBinaryData
public byte[] getBinaryData()
Description copied from class:FieldGet data as a byte array.- Specified by:
getBinaryDatain classField- Returns:
- byte[]
-
setBinaryData NEW
public void setBinaryData(byte[] bytes)
Description copied from class:FieldSet data from binary byte array. All variable-length fields must implement this method.- Specified by:
setBinaryDatain classField- Parameters:
bytes- field data
-
-