public enum Fun1 extends Enum<Fun1>
| Enum Constant and Description |
|---|
abs |
acos |
acosh |
asin |
asinh |
atan |
atanh |
complement |
cos |
cosh |
exp |
log |
not |
sin |
sinh |
sqrt |
tan |
tanh |
| Modifier and Type | Method and Description |
|---|---|
static Fun1 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Fun1[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fun1 complement
public static Fun1[] values()
for (Fun1 c : Fun1.values()) System.out.println(c);
public static Fun1 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.