public static enum RobotConfigFile.FileLocation extends java.lang.Enum<RobotConfigFile.FileLocation>
| Enum Constant and Description |
|---|
LOCAL_STORAGE |
NONE |
RESOURCE |
| Modifier and Type | Method and Description |
|---|---|
static RobotConfigFile.FileLocation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RobotConfigFile.FileLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RobotConfigFile.FileLocation NONE
public static final RobotConfigFile.FileLocation LOCAL_STORAGE
public static final RobotConfigFile.FileLocation RESOURCE
public static RobotConfigFile.FileLocation[] values()
for (RobotConfigFile.FileLocation c : RobotConfigFile.FileLocation.values()) System.out.println(c);
public static RobotConfigFile.FileLocation 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