Package org.eclipse.emf.compare.command
Enum CommandStackEvent.Operation
- java.lang.Object
-
- java.lang.Enum<CommandStackEvent.Operation>
-
- org.eclipse.emf.compare.command.CommandStackEvent.Operation
-
- All Implemented Interfaces:
Serializable
,Comparable<CommandStackEvent.Operation>
- Enclosing class:
- CommandStackEvent
public static enum CommandStackEvent.Operation extends Enum<CommandStackEvent.Operation>
An event type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXECUTE
The value indicating thatCommandStack.execute(Command)
was called.FLUSH
The value indicating thatCommandStackt#flush
was called.REDO
The value indicating thatCommandStack.redo()
was called.UNDO
the value indicating thatCommandStack.undo()
was called.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommandStackEvent.Operation
valueOf(String name)
Returns the enum constant of this type with the specified name.static CommandStackEvent.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXECUTE
public static final CommandStackEvent.Operation EXECUTE
The value indicating thatCommandStack.execute(Command)
was called.
-
UNDO
public static final CommandStackEvent.Operation UNDO
the value indicating thatCommandStack.undo()
was called.
-
REDO
public static final CommandStackEvent.Operation REDO
The value indicating thatCommandStack.redo()
was called.
-
FLUSH
public static final CommandStackEvent.Operation FLUSH
The value indicating thatCommandStackt#flush
was called.
-
-
Method Detail
-
values
public static CommandStackEvent.Operation[] 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 (CommandStackEvent.Operation c : CommandStackEvent.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommandStackEvent.Operation 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
-
-