public enum DataSeriesType extends java.lang.Enum<DataSeriesType>
| Enum Constant and Description |
|---|
BYTE
A single signed byte (256 distinct values)
|
BYTE_ARRAY
An array of bytes.
|
INT
A signed integer ~4 billions of them.
|
LONG
A signed long value, 64 bits, too many to count.
|
| Modifier and Type | Method and Description |
|---|---|
static DataSeriesType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataSeriesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSeriesType BYTE
public static final DataSeriesType INT
public static final DataSeriesType LONG
public static final DataSeriesType BYTE_ARRAY
public static DataSeriesType[] values()
for (DataSeriesType c : DataSeriesType.values()) System.out.println(c);
public static DataSeriesType 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 null