public static enum SchemaElement.SchemaElementType extends Enum<SchemaElement.SchemaElementType>
Enum Constant and Description |
---|
FOREIGN
A foreign or physical schema element.
|
VIRTUAL
A virtual schema element.
|
Modifier and Type | Field and Description |
---|---|
static SchemaElement.SchemaElementType |
DEFAULT_VALUE
The default type.
|
Modifier and Type | Method and Description |
---|---|
static SchemaElement.SchemaElementType |
fromValue(String value) |
static SchemaElement.SchemaElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaElement.SchemaElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaElement.SchemaElementType FOREIGN
public static final SchemaElement.SchemaElementType VIRTUAL
public static final SchemaElement.SchemaElementType DEFAULT_VALUE
public static SchemaElement.SchemaElementType[] values()
for (SchemaElement.SchemaElementType c : SchemaElement.SchemaElementType.values()) System.out.println(c);
public static SchemaElement.SchemaElementType 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 nullpublic static SchemaElement.SchemaElementType fromValue(String value)
value
- the value whose SchemaElementType
is being requested (can be empty)SchemaElementType
or the default value if not foundDEFAULT_VALUE
Copyright © 2013–2019. All rights reserved.