public static enum UnaryOperator.Category extends Enum<UnaryOperator.Category>
Enum Constant and Description |
---|
ARITHMETIC
Arithmetic operations.
|
BITWISE
Bitwise operations.
|
INCREMENT_DECREMENT
Prefix increment/decrement.
|
LOGICAL
Logical operations.
|
Modifier and Type | Method and Description |
---|---|
static UnaryOperator.Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnaryOperator.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnaryOperator.Category INCREMENT_DECREMENT
public static final UnaryOperator.Category ARITHMETIC
public static final UnaryOperator.Category BITWISE
public static final UnaryOperator.Category LOGICAL
public static UnaryOperator.Category[] values()
for (UnaryOperator.Category c : UnaryOperator.Category.values()) System.out.println(c);
public static UnaryOperator.Category valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.