public enum AttributeNameFormat extends Enum<AttributeNameFormat>
Enum Constant and Description |
---|
BASIC |
UNSPECIFIED |
URI |
Modifier and Type | Method and Description |
---|---|
static AttributeNameFormat |
fromUrn(String name) |
String |
toString() |
static AttributeNameFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeNameFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeNameFormat UNSPECIFIED
public static final AttributeNameFormat URI
public static final AttributeNameFormat BASIC
public static AttributeNameFormat[] values()
for (AttributeNameFormat c : AttributeNameFormat.values()) System.out.println(c);
public static AttributeNameFormat 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 AttributeNameFormat fromUrn(String name)
public String toString()
toString
in class Enum<AttributeNameFormat>