Enum FileSelectionModuleSettings.FileSelectionModuleBackend
- java.lang.Object
-
- java.lang.Enum<FileSelectionModuleSettings.FileSelectionModuleBackend>
-
- de.extio.spacecraft.shared.model.client.settings.FileSelectionModuleSettings.FileSelectionModuleBackend
-
- All Implemented Interfaces:
Serializable
,Comparable<FileSelectionModuleSettings.FileSelectionModuleBackend>
- Enclosing class:
- FileSelectionModuleSettings
public static enum FileSelectionModuleSettings.FileSelectionModuleBackend extends Enum<FileSelectionModuleSettings.FileSelectionModuleBackend>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FILE_SYSTEM
STORAGE_MANAGER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileSelectionModuleSettings.FileSelectionModuleBackend
valueOf(String name)
Returns the enum constant of this type with the specified name.static FileSelectionModuleSettings.FileSelectionModuleBackend[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STORAGE_MANAGER
public static final FileSelectionModuleSettings.FileSelectionModuleBackend STORAGE_MANAGER
-
FILE_SYSTEM
public static final FileSelectionModuleSettings.FileSelectionModuleBackend FILE_SYSTEM
-
-
Method Detail
-
values
public static FileSelectionModuleSettings.FileSelectionModuleBackend[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FileSelectionModuleSettings.FileSelectionModuleBackend c : FileSelectionModuleSettings.FileSelectionModuleBackend.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileSelectionModuleSettings.FileSelectionModuleBackend valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-