Enum StoreEvent.StoreEventType
- java.lang.Object
-
- java.lang.Enum<StoreEvent.StoreEventType>
-
- de.unistuttgart.isw.sfsc.commonjava.util.StoreEvent.StoreEventType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<StoreEvent.StoreEventType>,java.lang.constant.Constable
- Enclosing class:
- StoreEvent<T>
public static enum StoreEvent.StoreEventType extends java.lang.Enum<StoreEvent.StoreEventType>
-
-
Method Summary
Modifier and Type Method Description static StoreEvent.StoreEventTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StoreEvent.StoreEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final StoreEvent.StoreEventType CREATE
-
DELETE
public static final StoreEvent.StoreEventType DELETE
-
-
Method Detail
-
values
public static StoreEvent.StoreEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StoreEvent.StoreEventType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-