Package org.example.expression.function
Enum LogFunction.Type
- java.lang.Object
-
- java.lang.Enum<LogFunction.Type>
-
- org.example.expression.function.LogFunction.Type
-
- All Implemented Interfaces:
Serializable,Comparable<LogFunction.Type>
- Enclosing class:
- LogFunction
public static enum LogFunction.Type extends Enum<LogFunction.Type>
Тип логарифмической функции.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FunctiongetDelegate()static LogFunction.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static LogFunction.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LN
public static final LogFunction.Type LN
-
LOG10
public static final LogFunction.Type LOG10
-
LOG2
public static final LogFunction.Type LOG2
-
-
Method Detail
-
values
public static LogFunction.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LogFunction.Type c : LogFunction.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogFunction.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getDelegate
public Function getDelegate()
-
-