public enum Fun2 extends Enum<Fun2>
| Enum Constant and Description |
|---|
add |
atan2 |
bitAnd |
bitOr |
dist |
divide |
lshift |
max |
min |
modulo |
multiply |
rshift |
substract |
xor |
| Modifier and Type | Method and Description |
|---|---|
static Fun2 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Fun2[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Fun2[] values()
for (Fun2 c : Fun2.values()) System.out.println(c);
public static Fun2 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 © 2009-2015. All Rights Reserved.