public enum PreDefinedFieldName extends Enum<PreDefinedFieldName>
Java class for PreDefinedFieldName.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PreDefinedFieldName">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="pkg"/>
<enumeration value="uri"/>
<enumeration value="type"/>
<enumeration value="uuid"/>
<enumeration value="property"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
PKG
The package pre-defined field name
|
PROPERTY
The SDO Property name
|
TYPE
The SDO Type name pre-defined field name
|
URI
The universal resource identifier pre-defined field name
|
UUID
The universal unique ID pre-defined field name
|
| Modifier and Type | Method and Description |
|---|---|
static PreDefinedFieldName |
fromValue(String v) |
String |
value() |
static PreDefinedFieldName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreDefinedFieldName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreDefinedFieldName PKG
public static final PreDefinedFieldName URI
public static final PreDefinedFieldName TYPE
public static final PreDefinedFieldName UUID
public static final PreDefinedFieldName PROPERTY
public static PreDefinedFieldName[] values()
for (PreDefinedFieldName c : PreDefinedFieldName.values()) System.out.println(c);
public static PreDefinedFieldName 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 String value()
public static PreDefinedFieldName fromValue(String v)
Copyright © 2017. All Rights Reserved.