Package de.fraunhofer.iese.mydata
Enum OperationalMode
- java.lang.Object
-
- java.lang.Enum<OperationalMode>
-
- de.fraunhofer.iese.mydata.OperationalMode
-
- All Implemented Interfaces:
Serializable
,Comparable<OperationalMode>
public enum OperationalMode extends Enum<OperationalMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOUD
LOCAL
LOCAL_WITH_CLOUD_SYNC
LOCAL_WITH_FILE_SYNC
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OperationalMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static OperationalMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOCAL
public static final OperationalMode LOCAL
-
LOCAL_WITH_FILE_SYNC
public static final OperationalMode LOCAL_WITH_FILE_SYNC
-
LOCAL_WITH_CLOUD_SYNC
public static final OperationalMode LOCAL_WITH_CLOUD_SYNC
-
CLOUD
public static final OperationalMode CLOUD
-
-
Method Detail
-
values
public static OperationalMode[] 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 (OperationalMode c : OperationalMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationalMode 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
-
-