Package hydra.ext.cypher.features
Class LogarithmicFunctionFeatures
- java.lang.Object
-
- hydra.ext.cypher.features.LogarithmicFunctionFeatures
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LogarithmicFunctionFeatures>
public class LogarithmicFunctionFeatures extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<LogarithmicFunctionFeatures>
Logarithmic functions- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.BooleaneThe e() function.static NameEjava.lang.BooleanexpThe exp() function.static NameEXPjava.lang.BooleanlogThe log() function.static NameLOGjava.lang.Booleanlog10The log10() function.static NameLOG10java.lang.BooleansqrtThe sqrt() function.static NameSQRTstatic NameTYPE_
-
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 intcompareTo(LogarithmicFunctionFeatures other)booleanequals(java.lang.Object other)inthashCode()LogarithmicFunctionFeatureswithE(java.lang.Boolean e)LogarithmicFunctionFeatureswithExp(java.lang.Boolean exp)LogarithmicFunctionFeatureswithLog(java.lang.Boolean log)LogarithmicFunctionFeatureswithLog10(java.lang.Boolean log10)LogarithmicFunctionFeatureswithSqrt(java.lang.Boolean sqrt)
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
-
E
public static final Name E
-
EXP
public static final Name EXP
-
LOG
public static final Name LOG
-
LOG10
public static final Name LOG10
-
SQRT
public static final 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:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
compareTo
public int compareTo(LogarithmicFunctionFeatures other)
- Specified by:
compareToin interfacejava.lang.Comparable<LogarithmicFunctionFeatures>
-
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)
-
-