public enum JUnaryOperator extends Enum<JUnaryOperator>
Modifier and Type | Method and Description |
---|---|
char[] |
getSymbol() |
boolean |
isModifying() |
String |
toString() |
static JUnaryOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JUnaryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, createValueOfMap, equals, getDeclaringClass, hashCode, name, ordinal, valueOf, valueOf
public static final JUnaryOperator INC
public static final JUnaryOperator DEC
public static final JUnaryOperator NEG
public static final JUnaryOperator NOT
public static final JUnaryOperator BIT_NOT
public static JUnaryOperator[] values()
for (JUnaryOperator c : JUnaryOperator.values()) System.out.println(c);
public static JUnaryOperator 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 nullpublic char[] getSymbol()
public boolean isModifying()
public String toString()
toString
in class Enum<JUnaryOperator>
Copyright © 2018. All rights reserved.