Serializable
, Comparable<DataSeriesType>
public enum DataSeriesType extends Enum<DataSeriesType>
Enum Constant | 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 | Description |
---|---|---|
static DataSeriesType |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null