public static enum PrimitiveValue.Representation extends Enum<PrimitiveValue.Representation>
| Enum Constant and Description |
|---|
BYTE_ARRAY |
DOUBLE |
LONG |
| Modifier and Type | Method and Description |
|---|---|
static PrimitiveValue.Representation |
valueOf(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(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 nullCopyright © 2013 Real Logic Ltd. All Rights Reserved.