lib.dwfl
Class DwAte

java.lang.Object
  extended by java.lang.Number
      extended by lib.dwfl.DwAte
All Implemented Interfaces:
Serializable, Comparable

public class DwAte
extends Number
implements Comparable

See Also:
Serialized Form

Field Summary
static DwAte ADDRESS
           
static int ADDRESS_
           
static DwAte BOOLEAN
           
static int BOOLEAN_
           
static DwAte COMPLEX_FLOAT
           
static int COMPLEX_FLOAT_
           
static DwAte DECIMAL_FLOAT
           
static int DECIMAL_FLOAT_
           
static DwAte EDITED
           
static int EDITED_
           
static DwAte FLOAT
           
static int FLOAT_
           
static DwAte HI_USER
           
static int HI_USER_
           
static DwAte IMAGINARY_FLOAT
           
static int IMAGINARY_FLOAT_
           
static DwAte LO_USER
           
static int LO_USER_
           
static DwAte NUMERIC_STRING
           
static int NUMERIC_STRING_
           
static DwAte PACKED_DECIMAL
           
static int PACKED_DECIMAL_
           
static DwAte SIGNED
           
static int SIGNED_
           
static DwAte SIGNED_CHAR
           
static int SIGNED_CHAR_
           
static DwAte SIGNED_FIXED
           
static int SIGNED_FIXED_
           
static DwAte UNSIGNED
           
static int UNSIGNED_
           
static DwAte UNSIGNED_CHAR
           
static int UNSIGNED_CHAR_
           
static DwAte UNSIGNED_FIXED
           
static int UNSIGNED_FIXED_
           
static DwAte VOID
           
static int VOID_
           
 
Method Summary
 int compareTo(Object o)
           
 double doubleValue()
          Return the equivalent of the enum.
 boolean equals(Object o)
          Return true if OBJECT has the same value.
 float floatValue()
          Return the equivalent of the enum.
 int hashCode()
           
 int intValue()
          Return the equivalent of the enum.
 long longValue()
          Return the equivalent of the enum.
 String toName()
          Return the name of just the enum.
static String toName(long i)
          Returns just the name part of the num corresponding to I.
static String toName(long i, String def)
          Returns just the name part of the num corresponding to I, or DEF is there is no such field.
 String toPrint()
          Return a printable version of the enum.
static String toPrintString(long i)
          Returns the printable (or user readable) name for the field corresponding to the value I.
static String toPrintString(long i, String def)
          Returns the printable (or user readable) name for the field corresponding to the value I, or DEF is there is no such field.
 String toString()
          Return the qualified name of the enum.
static String toString(long i)
          Returns the full underscore delimited name of the field corresponding to the value I.
static DwAte valueOf(long i)
          Return the DwAte object that matches the integer.
static DwAte valueOf(String string)
          Return the DwAte object that matches the string.
static DwAte[] values()
          Return an array of all the DwAte elements.
 
Methods inherited from class java.lang.Number
byteValue, shortValue
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

VOID_

public static final int VOID_
See Also:
Constant Field Values

VOID

public static final DwAte VOID

ADDRESS_

public static final int ADDRESS_
See Also:
Constant Field Values

ADDRESS

public static final DwAte ADDRESS

BOOLEAN_

public static final int BOOLEAN_
See Also:
Constant Field Values

BOOLEAN

public static final DwAte BOOLEAN

COMPLEX_FLOAT_

public static final int COMPLEX_FLOAT_
See Also:
Constant Field Values

COMPLEX_FLOAT

public static final DwAte COMPLEX_FLOAT

FLOAT_

public static final int FLOAT_
See Also:
Constant Field Values

FLOAT

public static final DwAte FLOAT

SIGNED_

public static final int SIGNED_
See Also:
Constant Field Values

SIGNED

public static final DwAte SIGNED

SIGNED_CHAR_

public static final int SIGNED_CHAR_
See Also:
Constant Field Values

SIGNED_CHAR

public static final DwAte SIGNED_CHAR

UNSIGNED_

public static final int UNSIGNED_
See Also:
Constant Field Values

UNSIGNED

public static final DwAte UNSIGNED

UNSIGNED_CHAR_

public static final int UNSIGNED_CHAR_
See Also:
Constant Field Values

UNSIGNED_CHAR

public static final DwAte UNSIGNED_CHAR

IMAGINARY_FLOAT_

public static final int IMAGINARY_FLOAT_
See Also:
Constant Field Values

IMAGINARY_FLOAT

public static final DwAte IMAGINARY_FLOAT

PACKED_DECIMAL_

public static final int PACKED_DECIMAL_
See Also:
Constant Field Values

PACKED_DECIMAL

public static final DwAte PACKED_DECIMAL

NUMERIC_STRING_

public static final int NUMERIC_STRING_
See Also:
Constant Field Values

NUMERIC_STRING

public static final DwAte NUMERIC_STRING

EDITED_

public static final int EDITED_
See Also:
Constant Field Values

EDITED

public static final DwAte EDITED

SIGNED_FIXED_

public static final int SIGNED_FIXED_
See Also:
Constant Field Values

SIGNED_FIXED

public static final DwAte SIGNED_FIXED

UNSIGNED_FIXED_

public static final int UNSIGNED_FIXED_
See Also:
Constant Field Values

UNSIGNED_FIXED

public static final DwAte UNSIGNED_FIXED

DECIMAL_FLOAT_

public static final int DECIMAL_FLOAT_
See Also:
Constant Field Values

DECIMAL_FLOAT

public static final DwAte DECIMAL_FLOAT

LO_USER_

public static final int LO_USER_
See Also:
Constant Field Values

LO_USER

public static final DwAte LO_USER

HI_USER_

public static final int HI_USER_
See Also:
Constant Field Values

HI_USER

public static final DwAte HI_USER
Method Detail

toString

public String toString()
Return the qualified name of the enum.

Overrides:
toString in class Object

toPrint

public String toPrint()
Return a printable version of the enum.


toName

public String toName()
Return the name of just the enum.


equals

public boolean equals(Object o)
Return true if OBJECT has the same value.

Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

compareTo

public int compareTo(Object o)
Specified by:
compareTo in interface Comparable

valueOf

public static DwAte valueOf(String string)
Return the DwAte object that matches the string.


valueOf

public static DwAte valueOf(long i)
Return the DwAte object that matches the integer.


values

public static DwAte[] values()
Return an array of all the DwAte elements.


toString

public static String toString(long i)
Returns the full underscore delimited name of the field corresponding to the value I.


toPrintString

public static String toPrintString(long i)
Returns the printable (or user readable) name for the field corresponding to the value I.


toPrintString

public static String toPrintString(long i,
                                   String def)
Returns the printable (or user readable) name for the field corresponding to the value I, or DEF is there is no such field.


toName

public static String toName(long i)
Returns just the name part of the num corresponding to I.


toName

public static String toName(long i,
                            String def)
Returns just the name part of the num corresponding to I, or DEF is there is no such field.


intValue

public int intValue()
Return the equivalent of the enum.

Specified by:
intValue in class Number

longValue

public long longValue()
Return the equivalent of the enum.

Specified by:
longValue in class Number

floatValue

public float floatValue()
Return the equivalent of the enum.

Specified by:
floatValue in class Number

doubleValue

public double doubleValue()
Return the equivalent of the enum.

Specified by:
doubleValue in class Number