Enum Constant and Description |
---|
ASPECT
Aspect.
|
PERSON
Person.
|
REFERENCE
Reference.
|
USER
Repository user.
|
Modifier and Type | Method and Description |
---|---|
static PDRType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PDRType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDRType ASPECT
public static final PDRType PERSON
public static final PDRType REFERENCE
public static final PDRType USER
public static PDRType[] values()
for (PDRType c : PDRType.values()) System.out.println(c);
public static PDRType 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 null