Package org.apache.hop.core.undo
Enum ChangeAction.ActionType
- java.lang.Object
-
- java.lang.Enum<ChangeAction.ActionType>
-
- org.apache.hop.core.undo.ChangeAction.ActionType
-
- All Implemented Interfaces:
Serializable,Comparable<ChangeAction.ActionType>
- Enclosing class:
- ChangeAction
public static enum ChangeAction.ActionType extends Enum<ChangeAction.ActionType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets descriptionstatic ChangeAction.ActionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ChangeAction.ActionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final ChangeAction.ActionType None
-
ChangeTransform
public static final ChangeAction.ActionType ChangeTransform
-
ChangePipelineHop
public static final ChangeAction.ActionType ChangePipelineHop
-
ChangeNote
public static final ChangeAction.ActionType ChangeNote
-
NewTransform
public static final ChangeAction.ActionType NewTransform
-
NewPipelineHop
public static final ChangeAction.ActionType NewPipelineHop
-
NewNote
public static final ChangeAction.ActionType NewNote
-
DeleteTransform
public static final ChangeAction.ActionType DeleteTransform
-
DeletePipelineHop
public static final ChangeAction.ActionType DeletePipelineHop
-
DeleteNote
public static final ChangeAction.ActionType DeleteNote
-
PositionTransform
public static final ChangeAction.ActionType PositionTransform
-
PositionNote
public static final ChangeAction.ActionType PositionNote
-
ChangeAction
public static final ChangeAction.ActionType ChangeAction
-
ChangeWorkflowHop
public static final ChangeAction.ActionType ChangeWorkflowHop
-
NewAction
public static final ChangeAction.ActionType NewAction
-
NewWorkflowHop
public static final ChangeAction.ActionType NewWorkflowHop
-
DeleteAction
public static final ChangeAction.ActionType DeleteAction
-
DeleteWorkflowHop
public static final ChangeAction.ActionType DeleteWorkflowHop
-
PositionAction
public static final ChangeAction.ActionType PositionAction
-
ChangeTableRow
public static final ChangeAction.ActionType ChangeTableRow
-
NewTableRow
public static final ChangeAction.ActionType NewTableRow
-
DeleteTableRow
public static final ChangeAction.ActionType DeleteTableRow
-
PositionTableRow
public static final ChangeAction.ActionType PositionTableRow
-
-
Method Detail
-
values
public static ChangeAction.ActionType[] 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 (ChangeAction.ActionType c : ChangeAction.ActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChangeAction.ActionType 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
-
getDescription
public String getDescription()
Gets description- Returns:
- value of description
-
-