Package org.openrewrite.java.tree
Enum J.Unary.Type
- java.lang.Object
-
- java.lang.Enum<J.Unary.Type>
-
- org.openrewrite.java.tree.J.Unary.Type
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<J.Unary.Type>
- Enclosing class:
- J.Unary
public static enum J.Unary.Type extends java.lang.Enum<J.Unary.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ComplementNegativeNotPositivePostDecrementPostIncrementPreDecrementPreIncrement
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static J.Unary.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static J.Unary.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PreIncrement
public static final J.Unary.Type PreIncrement
-
PreDecrement
public static final J.Unary.Type PreDecrement
-
PostIncrement
public static final J.Unary.Type PostIncrement
-
PostDecrement
public static final J.Unary.Type PostDecrement
-
Positive
public static final J.Unary.Type Positive
-
Negative
public static final J.Unary.Type Negative
-
Complement
public static final J.Unary.Type Complement
-
Not
public static final J.Unary.Type Not
-
-
Method Detail
-
values
public static J.Unary.Type[] 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 (J.Unary.Type c : J.Unary.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static J.Unary.Type 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
-
-