public static enum FieldValueFactorFunction.FunctionModifier extends Enum<FieldValueFactorFunction.FunctionModifier>
| 枚举常量和说明 |
|---|
LN
Perform natural logarithm operation
|
LN1P
Take the natural logarithm after adding 1 to the argument, to prevent the argument from being 0
|
LN2P
Add 2 to the logarithm and then take the natural logarithm with base e to prevent the logarithm from being 0
|
LOG
Perform logarithmic calculation with base 10
|
LOG1P
Take the base-10 logarithm after adding 1 to the actual value to prevent it from being 0.
|
LOG2P
Take the logarithm with base 10 after adding 2 to the true number to prevent the true number from being 0.
|
NONE
No additional operations
|
RECIPROCAL
Reciprocal operation
|
SQRT
Square root operation
|
SQUARE
Square operation
|
UNKNOWN |
| 限定符和类型 | 方法和说明 |
|---|---|
static FieldValueFactorFunction.FunctionModifier |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static FieldValueFactorFunction.FunctionModifier[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final FieldValueFactorFunction.FunctionModifier UNKNOWN
public static final FieldValueFactorFunction.FunctionModifier NONE
public static final FieldValueFactorFunction.FunctionModifier LOG
public static final FieldValueFactorFunction.FunctionModifier LOG1P
public static final FieldValueFactorFunction.FunctionModifier LOG2P
public static final FieldValueFactorFunction.FunctionModifier LN
public static final FieldValueFactorFunction.FunctionModifier LN1P
public static final FieldValueFactorFunction.FunctionModifier LN2P
public static final FieldValueFactorFunction.FunctionModifier SQUARE
public static final FieldValueFactorFunction.FunctionModifier SQRT
public static final FieldValueFactorFunction.FunctionModifier RECIPROCAL
public static FieldValueFactorFunction.FunctionModifier[] values()
for (FieldValueFactorFunction.FunctionModifier c : FieldValueFactorFunction.FunctionModifier.values()) System.out.println(c);
public static FieldValueFactorFunction.FunctionModifier valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All Rights Reserved.