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