public static enum APIConstants.FilePathType extends java.lang.Enum<APIConstants.FilePathType>
Enum Constant and Description |
---|
ABSOLUTE
ABSOLUTE - Refers to the given file path type is Absolute.
|
RELATIVE
RELATIVE - Refers to the given file path type is Relative.
|
Modifier and Type | Method and Description |
---|---|
static APIConstants.FilePathType |
getFilePathType(java.lang.String value) |
static APIConstants.FilePathType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static APIConstants.FilePathType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIConstants.FilePathType ABSOLUTE
public static final APIConstants.FilePathType RELATIVE
public static APIConstants.FilePathType[] values()
for (APIConstants.FilePathType c : APIConstants.FilePathType.values()) System.out.println(c);
public static APIConstants.FilePathType 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 static APIConstants.FilePathType getFilePathType(java.lang.String value)