public enum EnumUniversalEntityIDType extends java.lang.Enum<EnumUniversalEntityIDType>
| Enum Constant and Description |
|---|
DNS
The DNS - An Internet dotted name.
|
EUI64
The EUI64 - An IEEE Extended Unique Identifier.
|
ISO
The ISO - An International Standards Organization Object Identifier.
|
URI
The URI - Uniform Resource Identifier.
|
UUID
The UUID - The DCE Universal Unique Identifier.
|
X400
The X400 - An X.400 MHS identifier.
|
X500
The X500 - An X.500 directory name.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumUniversalEntityIDType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumUniversalEntityIDType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumUniversalEntityIDType DNS
public static final EnumUniversalEntityIDType EUI64
public static final EnumUniversalEntityIDType ISO
public static final EnumUniversalEntityIDType URI
public static final EnumUniversalEntityIDType UUID
public static final EnumUniversalEntityIDType X400
public static final EnumUniversalEntityIDType X500
public static EnumUniversalEntityIDType[] values()
for (EnumUniversalEntityIDType c : EnumUniversalEntityIDType.values()) System.out.println(c);
public static EnumUniversalEntityIDType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()