Enum FileMgr.LocalFileSystem
- java.lang.Object
-
- java.lang.Enum<FileMgr.LocalFileSystem>
-
- org.silverpeas.mobile.client.common.file.FileMgr.LocalFileSystem
-
- All Implemented Interfaces:
Serializable
,Comparable<FileMgr.LocalFileSystem>
- Enclosing class:
- FileMgr
public static enum FileMgr.LocalFileSystem extends Enum<FileMgr.LocalFileSystem>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PERSISTENT
TEMPORARY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileMgr.LocalFileSystem
valueOf(String name)
Returns the enum constant of this type with the specified name.static FileMgr.LocalFileSystem[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEMPORARY
public static final FileMgr.LocalFileSystem TEMPORARY
-
PERSISTENT
public static final FileMgr.LocalFileSystem PERSISTENT
-
-
Method Detail
-
values
public static FileMgr.LocalFileSystem[] 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 (FileMgr.LocalFileSystem c : FileMgr.LocalFileSystem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileMgr.LocalFileSystem 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
-
-