Package db

Class ShortField

  • All Implemented Interfaces:
    java.lang.Comparable<Field>

    public class ShortField
    extends Field
    ShortField provides a wrapper for 2-byte signed short data which is read or written to a Record.
    • Constructor Detail

      • ShortField

        public ShortField()
        Construct a short field with an initial value of 0.
      • ShortField

        public ShortField​(short s)
        Construct a short field with an initial value of s.
        Parameters:
        s - initial value
    • Method Detail

      • getShortValue

        public short getShortValue()
        Description copied from class: Field
        Get field as a short value.
        Overrides:
        getShortValue in class Field
        Returns:
        short value
      • setShortValue

        public void setShortValue​(short value)
        Description copied from class: Field
        Set field's short value.
        Overrides:
        setShortValue in class Field
        Parameters:
        value - short value
      • getFieldType

        protected byte getFieldType()
        Description copied from class: Field
        Return Field instance type as an integer value
        Specified by:
        getFieldType in class Field
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getValueAsString

        public java.lang.String getValueAsString()
        Specified by:
        getValueAsString in class Field
      • equals

        public boolean equals​(java.lang.Object obj)
        Specified by:
        equals in class Field
      • compareTo

        public int compareTo​(Field o)
      • newField

        public Field newField​(Field fieldValue)
        Description copied from class: Field
        Create new instance of this field type.
        Specified by:
        newField in class Field
        Parameters:
        fieldValue - initial field value.
        Returns:
        long
      • newField

        public Field newField()
        Description copied from class: Field
        Create new instance of this field type.
        Specified by:
        newField in class Field
        Returns:
        long
      • getLongValue

        public long getLongValue()
        Description copied from class: Field
        Get field as a long value. All fixed-length field objects must implement this method
        Overrides:
        getLongValue in class Field
        Returns:
        long value
      • setLongValue

        public void setLongValue​(long value)
        Description copied from class: Field
        Set field's long value. All fixed-length field objects must implement this method
        Overrides:
        setLongValue in class Field
        Parameters:
        value - long value
      • getBinaryData

        public byte[] getBinaryData()
        Description copied from class: Field
        Get data as a byte array.
        Specified by:
        getBinaryData in class Field
        Returns:
        byte[]
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in class Field