public enum RelativePathType extends java.lang.Enum<RelativePathType>
Relative path type enumeration.
The relative path type can be relative to the data file, or relative to the workspace file.
| Enum Constant and Description |
|---|
Config
Relative to the data file.
|
Workspace
Relative to the workspace file.
|
| Modifier and Type | Method and Description |
|---|---|
static RelativePathType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RelativePathType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final RelativePathType Workspace
public static final RelativePathType Config
public static RelativePathType[] values()
for (RelativePathType c : RelativePathType.values())
System.out.println(c);
public static RelativePathType 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