|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<MathSingleFunctions>
tecgraf.javautils.jexpression.util.function.MathSingleFunctions
public enum MathSingleFunctions
Conjunto de funções pré-definidas que recebem apenas um parâmetro do tipo
Double.
| Enum Constant Summary | |
|---|---|
ABS
Valor absoluto. |
|
CBRT
Raiz cúbica. |
|
COS
Cosseno. |
|
EXP
exp. |
|
FLOOR
Floor. |
|
LOG
log. |
|
LOG10
log10. |
|
ROUND
Valor arredondado. |
|
SIN
Seno. |
|
SQRT
Raiz quadrada. |
|
TAN
Tangente. |
|
| Method Summary | |
|---|---|
abstract JExpressionSingleFunction<Double> |
getFunction()
Função. |
static MathSingleFunctions |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MathSingleFunctions[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final MathSingleFunctions EXP
public static final MathSingleFunctions LOG10
public static final MathSingleFunctions LOG
public static final MathSingleFunctions ROUND
public static final MathSingleFunctions FLOOR
public static final MathSingleFunctions ABS
public static final MathSingleFunctions CBRT
public static final MathSingleFunctions SQRT
public static final MathSingleFunctions TAN
public static final MathSingleFunctions SIN
public static final MathSingleFunctions COS
| Method Detail |
|---|
public static MathSingleFunctions[] values()
for (MathSingleFunctions c : MathSingleFunctions.values()) System.out.println(c);
public static MathSingleFunctions valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic abstract JExpressionSingleFunction<Double> getFunction()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||