public enum LibraryPathType extends java.lang.Enum<LibraryPathType>
OrderRootType
. We can't use the later directly because it's not properly setup
for serialization/deserialization.Enum Constant and Description |
---|
ANNOTATION |
BINARY |
DOC |
SOURCE |
Modifier and Type | Method and Description |
---|---|
static LibraryPathType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LibraryPathType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LibraryPathType BINARY
public static final LibraryPathType SOURCE
public static final LibraryPathType DOC
public static final LibraryPathType ANNOTATION
public static LibraryPathType[] values()
for (LibraryPathType c : LibraryPathType.values()) System.out.println(c);
public static LibraryPathType 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