Package db
Class IntField
- java.lang.Object
-
- db.Field
-
- db.IntField
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class db.Field
Field.UnsupportedFieldException
-
-
Field Summary
Fields Change Modifier and Type Field Description NEW static IntFieldINSTANCENEW static IntFieldMAX_VALUEMaximum integer field valueNEW static IntFieldMIN_VALUEMinimum integer field valueNEW static IntFieldZERO_VALUEZero int 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 IntFieldcopyField()Create new instance of this field with the same value.booleanequals(java.lang.Object obj)byte[]getBinaryData()Get data as a byte array.intgetIntValue()Get field as an integer value.longgetLongValue()Get field as a long value.java.lang.StringgetValueAsString()Get field value as a formatted stringinthashCode()MODIFIED IntFieldnewField()Create new instance of this field type.voidsetBinaryData(byte[] bytes)Set data from binary byte array.voidsetIntValue(int value)Set field's integer 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, getByteValue, getShortValue, getString, isSameType, isVariableLength, setBooleanValue, setByteValue, setShortValue, setString
-
-
-
-
Field Detail
-
MIN_VALUE NEW
public static final IntField MIN_VALUE
Minimum integer field value
-
MAX_VALUE NEW
public static final IntField MAX_VALUE
Maximum integer field value
-
ZERO_VALUE NEW
public static final IntField ZERO_VALUE
Zero int field value
Constructor Detail
-
IntField
public IntField()
Construct an integer field with an initial value of 0.
-
IntField
public IntField(int i)
Construct an integer field with an initial value of i.- Parameters:
i- initial value
-
-
Method Detail
-
getIntValue
public int getIntValue()
Description copied from class:FieldGet field as an integer value.- Overrides:
getIntValuein classField- Returns:
- integer value
-
setIntValue
public void setIntValue(int value)
Description copied from class:FieldSet field's integer value.- Overrides:
setIntValuein classField- Parameters:
value- integer 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
-
-