Package org.eclipse.steady.java.sign
Enum ASTSignatureChange.OperationType
- java.lang.Object
-
- java.lang.Enum<ASTSignatureChange.OperationType>
-
- org.eclipse.steady.java.sign.ASTSignatureChange.OperationType
-
- All Implemented Interfaces:
Serializable,Comparable<ASTSignatureChange.OperationType>
- Enclosing class:
- ASTSignatureChange
public static enum ASTSignatureChange.OperationType extends Enum<ASTSignatureChange.OperationType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ASTSignatureChange.OperationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ASTSignatureChange.OperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Insert
public static final ASTSignatureChange.OperationType Insert
-
Update
public static final ASTSignatureChange.OperationType Update
-
Move
public static final ASTSignatureChange.OperationType Move
-
Delete
public static final ASTSignatureChange.OperationType Delete
-
-
Method Detail
-
values
public static ASTSignatureChange.OperationType[] 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 (ASTSignatureChange.OperationType c : ASTSignatureChange.OperationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ASTSignatureChange.OperationType 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
-
-