| Enum Constant and Description |
|---|
FALSE_VALUE |
NULL_VAL
To be used to represent not present or null.
|
TRUE_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Bool |
get(short value)
Lookup the enum value representing the value.
|
short |
value()
The raw encoded value in the Java type representation.
|
static Bool |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Bool[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bool FALSE_VALUE
public static final Bool TRUE_VALUE
public static final Bool NULL_VAL
public static Bool[] values()
for (Bool c : Bool.values()) System.out.println(c);
public static Bool 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 short value()
public static Bool get(short value)
value - encoded to be looked up.Copyright © 2015-2022 Real Logic Limited. All Rights Reserved.