public static enum DataRepresentation.Base extends Enum<DataRepresentation.Base>
| Enum Constant and Description |
|---|
NULL
Unspecified values signify a null or missing value.
|
ZERO
Unspecified values signify a "zero".
|
| Modifier and Type | Method and Description |
|---|---|
static DataRepresentation.Base |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataRepresentation.Base[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRepresentation.Base NULL
public static final DataRepresentation.Base ZERO
public static DataRepresentation.Base[] values()
for (DataRepresentation.Base c : DataRepresentation.Base.values()) System.out.println(c);
public static DataRepresentation.Base 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 © 2020 Actian Corporation. All rights reserved.