public enum InternalLookup extends java.lang.Enum<InternalLookup>
| Enum Constant and Description |
|---|
OU |
OUTYPE |
PERSON |
PERSONTYPE |
| Modifier and Type | Method and Description |
|---|---|
static InternalLookup |
get(java.lang.String name) |
java.lang.String |
getLocalizationKey() |
java.lang.String |
getName() |
long |
getValue() |
static InternalLookup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InternalLookup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalLookup OU
public static final InternalLookup OUTYPE
public static final InternalLookup PERSON
public static final InternalLookup PERSONTYPE
public static InternalLookup[] values()
for (InternalLookup c : InternalLookup.values()) System.out.println(c);
public static InternalLookup 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 long getValue()
public java.lang.String getName()
public java.lang.String getLocalizationKey()
public static InternalLookup get(java.lang.String name)