public static enum Entity.DATA_CATEGORY extends Enum<Entity.DATA_CATEGORY>
| Enum Constant and Description |
|---|
BINARY |
FLOATING |
INTEGRAL |
LITERAL |
LOGICAL |
MIXED |
NOTHING |
SYSTEM |
TEMPORAL |
| Modifier and Type | Method and Description |
|---|---|
static Entity.DATA_CATEGORY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Entity.DATA_CATEGORY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Entity.DATA_CATEGORY NOTHING
public static final Entity.DATA_CATEGORY LOGICAL
public static final Entity.DATA_CATEGORY INTEGRAL
public static final Entity.DATA_CATEGORY FLOATING
public static final Entity.DATA_CATEGORY TEMPORAL
public static final Entity.DATA_CATEGORY LITERAL
public static final Entity.DATA_CATEGORY SYSTEM
public static final Entity.DATA_CATEGORY MIXED
public static final Entity.DATA_CATEGORY BINARY
public static Entity.DATA_CATEGORY[] values()
for (Entity.DATA_CATEGORY c : Entity.DATA_CATEGORY.values()) System.out.println(c);
public static Entity.DATA_CATEGORY 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 © 2019 DolphinDB. All rights reserved.