Package uk.ac.qmul.eecs.depic.patterns
Enum SequenceEvent.What
- java.lang.Object
-
- java.lang.Enum<SequenceEvent.What>
-
- uk.ac.qmul.eecs.depic.patterns.SequenceEvent.What
-
- Enclosing class:
- SequenceEvent
public static enum SequenceEvent.What extends java.lang.Enum<SequenceEvent.What>
Type of events in a sequence
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description BEGIN_CHANGED
END_CHANGED
VALUE_ADDED
VALUE_CHANGED
VALUE_REMOVED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static SequenceEvent.What
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SequenceEvent.What[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEGIN_CHANGED
public static final SequenceEvent.What BEGIN_CHANGED
-
END_CHANGED
public static final SequenceEvent.What END_CHANGED
-
VALUE_ADDED
public static final SequenceEvent.What VALUE_ADDED
-
VALUE_CHANGED
public static final SequenceEvent.What VALUE_CHANGED
-
VALUE_REMOVED
public static final SequenceEvent.What VALUE_REMOVED
-
-
Method Detail
-
values
public static SequenceEvent.What[] 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 (SequenceEvent.What c : SequenceEvent.What.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SequenceEvent.What 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
-
-