public enum DBObjectType extends Enum<DBObjectType>
| Enum Constant and Description |
|---|
CHRONICLE
Identifies a
Chronicle. |
PROPERTY
Identifies a
Property. |
SCHEMA
Identifies a
Schema. |
SERIES
Identifies a
Series. |
VALUE_TYPE
Identifies a
ValueType. |
| Modifier and Type | Method and Description |
|---|---|
static DBObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBObjectType CHRONICLE
Chronicle.public static final DBObjectType SERIES
Series.public static final DBObjectType SCHEMA
Schema.public static final DBObjectType PROPERTY
Property.public static final DBObjectType VALUE_TYPE
ValueType.public static DBObjectType[] values()
for (DBObjectType c : DBObjectType.values()) System.out.println(c);
public static DBObjectType 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 © 2017. All rights reserved.