public static enum PrimitiveValue.Representation extends java.lang.Enum<PrimitiveValue.Representation>
Enum Constant and Description |
---|
BYTE_ARRAY
Value is stored in a byte[].
|
DOUBLE
Value is stored in a double value.
|
LONG
Value is stored in a long value.
|
Modifier and Type | Method and Description |
---|---|
static PrimitiveValue.Representation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrimitiveValue.Representation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrimitiveValue.Representation LONG
public static final PrimitiveValue.Representation DOUBLE
public static final PrimitiveValue.Representation BYTE_ARRAY
public static PrimitiveValue.Representation[] values()
for (PrimitiveValue.Representation c : PrimitiveValue.Representation.values()) System.out.println(c);
public static PrimitiveValue.Representation 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 nullCopyright © 2014-2017 Real Logic Ltd. All Rights Reserved.