public static enum VotType.VotDatatype extends java.lang.Enum<VotType.VotDatatype>
Enum Constant and Description |
---|
BIT |
BOOLEAN |
CHAR |
DOUBLE |
DOUBLECOMPLEX |
FLOAT |
FLOATCOMPLEX |
INT |
LONG |
SHORT |
UNICODECHAR |
UNSIGNEDBYTE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static VotType.VotDatatype |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VotType.VotDatatype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VotType.VotDatatype BOOLEAN
public static final VotType.VotDatatype BIT
public static final VotType.VotDatatype UNSIGNEDBYTE
public static final VotType.VotDatatype SHORT
public static final VotType.VotDatatype INT
public static final VotType.VotDatatype LONG
public static final VotType.VotDatatype CHAR
public static final VotType.VotDatatype UNICODECHAR
public static final VotType.VotDatatype FLOAT
public static final VotType.VotDatatype DOUBLE
public static final VotType.VotDatatype FLOATCOMPLEX
public static final VotType.VotDatatype DOUBLECOMPLEX
public static VotType.VotDatatype[] values()
for (VotType.VotDatatype c : VotType.VotDatatype.values()) System.out.println(c);
public static VotType.VotDatatype valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<VotType.VotDatatype>