Package de.caluga.morphium
Enum MorphiumStorageListener.UpdateTypes
- java.lang.Object
-
- java.lang.Enum<MorphiumStorageListener.UpdateTypes>
-
- de.caluga.morphium.MorphiumStorageListener.UpdateTypes
-
- All Implemented Interfaces:
Serializable,Comparable<MorphiumStorageListener.UpdateTypes>
- Enclosing interface:
- MorphiumStorageListener<T>
public static enum MorphiumStorageListener.UpdateTypes extends Enum<MorphiumStorageListener.UpdateTypes>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MorphiumStorageListener.UpdateTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static MorphiumStorageListener.UpdateTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SET
public static final MorphiumStorageListener.UpdateTypes SET
-
UNSET
public static final MorphiumStorageListener.UpdateTypes UNSET
-
PUSH
public static final MorphiumStorageListener.UpdateTypes PUSH
-
PULL
public static final MorphiumStorageListener.UpdateTypes PULL
-
ADD_TO_SET
public static final MorphiumStorageListener.UpdateTypes ADD_TO_SET
-
INC
public static final MorphiumStorageListener.UpdateTypes INC
-
DEC
public static final MorphiumStorageListener.UpdateTypes DEC
-
MUL
public static final MorphiumStorageListener.UpdateTypes MUL
-
MIN
public static final MorphiumStorageListener.UpdateTypes MIN
-
MAX
public static final MorphiumStorageListener.UpdateTypes MAX
-
RENAME
public static final MorphiumStorageListener.UpdateTypes RENAME
-
POP
public static final MorphiumStorageListener.UpdateTypes POP
-
CURRENTDATE
public static final MorphiumStorageListener.UpdateTypes CURRENTDATE
-
CUSTOM
public static final MorphiumStorageListener.UpdateTypes CUSTOM
-
-
Method Detail
-
values
public static MorphiumStorageListener.UpdateTypes[] 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 (MorphiumStorageListener.UpdateTypes c : MorphiumStorageListener.UpdateTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MorphiumStorageListener.UpdateTypes 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
-
-