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.SerializableLogarithmic functions- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.BooleaneThe e() function.java.lang.BooleanexpThe exp() function.static NameFIELD_NAME_Estatic NameFIELD_NAME_EXPstatic NameFIELD_NAME_LOGstatic NameFIELD_NAME_LOG10static NameFIELD_NAME_SQRTjava.lang.BooleanlogThe log() function.java.lang.Booleanlog10The log10() function.java.lang.BooleansqrtThe sqrt() function.static NameTYPE_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 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_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:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein 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)
-
-