Class BuiltinTrigonometricFunctions
- java.lang.Object
-
- org.apache.beam.sdk.extensions.sql.impl.udf.BeamBuiltinFunctionProvider
-
- org.apache.beam.sdk.extensions.sql.impl.udf.BuiltinTrigonometricFunctions
-
@AutoService(BeamBuiltinFunctionProvider.class) public class BuiltinTrigonometricFunctions extends BeamBuiltinFunctionProvider
TrigonometricFunctions.
-
-
Constructor Summary
Constructors Constructor Description BuiltinTrigonometricFunctions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Doublecosh(java.lang.Double o)COSH(X)java.lang.Doublesinh(java.lang.Double o)SINH(X)java.lang.Doubletanh(java.lang.Double o)TANH(X)-
Methods inherited from class org.apache.beam.sdk.extensions.sql.impl.udf.BeamBuiltinFunctionProvider
getBuiltinMethods
-
-
-
-
Method Detail
-
cosh
public java.lang.Double cosh(java.lang.Double o)
COSH(X)Computes the hyperbolic cosine of X. Generates an error if an overflow occurs.
-
sinh
public java.lang.Double sinh(java.lang.Double o)
SINH(X)Computes the hyperbolic sine of X. Generates an error if an overflow occurs.
-
tanh
public java.lang.Double tanh(java.lang.Double o)
TANH(X)Computes hyperbolic tangent of X. Does not fail.
-
-