Package hydra.ext.cypher.features
Class LogarithmicFunctionFeatures
- java.lang.Object
-
- hydra.ext.cypher.features.LogarithmicFunctionFeatures
-
- All Implemented Interfaces:
java.io.Serializable
public class LogarithmicFunctionFeatures extends java.lang.Object implements java.io.Serializable
Logarithmic functions- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Boolean
e
The e() function.java.lang.Boolean
exp
The exp() function.static Name
FIELD_NAME_E
static Name
FIELD_NAME_EXP
static Name
FIELD_NAME_LOG
static Name
FIELD_NAME_LOG10
static Name
FIELD_NAME_SQRT
java.lang.Boolean
log
The log() function.java.lang.Boolean
log10
The log10() function.java.lang.Boolean
sqrt
The sqrt() function.static Name
TYPE_NAME
-
Constructor Summary
Constructors Constructor Description LogarithmicFunctionFeatures(java.lang.Boolean e, java.lang.Boolean exp, java.lang.Boolean log, java.lang.Boolean log10, java.lang.Boolean sqrt)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
int
hashCode()
LogarithmicFunctionFeatures
withE(java.lang.Boolean e)
LogarithmicFunctionFeatures
withExp(java.lang.Boolean exp)
LogarithmicFunctionFeatures
withLog(java.lang.Boolean log)
LogarithmicFunctionFeatures
withLog10(java.lang.Boolean log10)
LogarithmicFunctionFeatures
withSqrt(java.lang.Boolean sqrt)
-
-
-
Field Detail
-
TYPE_NAME
public static final Name TYPE_NAME
-
FIELD_NAME_E
public static final Name FIELD_NAME_E
-
FIELD_NAME_EXP
public static final Name FIELD_NAME_EXP
-
FIELD_NAME_LOG
public static final Name FIELD_NAME_LOG
-
FIELD_NAME_LOG10
public static final Name FIELD_NAME_LOG10
-
FIELD_NAME_SQRT
public static final Name FIELD_NAME_SQRT
-
e
public final java.lang.Boolean e
The e() function. Returns the base of the natural logarithm, e.
-
exp
public final java.lang.Boolean exp
The exp() function. Returns e^n, where e is the base of the natural logarithm, and n is the value of the argument expression.
-
log
public final java.lang.Boolean log
The log() function. Returns the natural logarithm of a FLOAT.
-
log10
public final java.lang.Boolean log10
The log10() function. Returns the common logarithm (base 10) of a FLOAT.
-
sqrt
public final java.lang.Boolean sqrt
The sqrt() function. Returns the square root of a FLOAT.
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
withE
public LogarithmicFunctionFeatures withE(java.lang.Boolean e)
-
withExp
public LogarithmicFunctionFeatures withExp(java.lang.Boolean exp)
-
withLog
public LogarithmicFunctionFeatures withLog(java.lang.Boolean log)
-
withLog10
public LogarithmicFunctionFeatures withLog10(java.lang.Boolean log10)
-
withSqrt
public LogarithmicFunctionFeatures withSqrt(java.lang.Boolean sqrt)
-
-