Enum UnaryOp

java.lang.Object
java.lang.Enum<UnaryOp>
ai.rapids.cudf.UnaryOp
All Implemented Interfaces:
Serializable, Comparable<UnaryOp>, java.lang.constant.Constable

public enum UnaryOp extends Enum<UnaryOp>
Mathematical unary operations.
  • Enum Constant Details

    • SIN

      public static final UnaryOp SIN
    • COS

      public static final UnaryOp COS
    • TAN

      public static final UnaryOp TAN
    • ARCSIN

      public static final UnaryOp ARCSIN
    • ARCCOS

      public static final UnaryOp ARCCOS
    • ARCTAN

      public static final UnaryOp ARCTAN
    • SINH

      public static final UnaryOp SINH
    • COSH

      public static final UnaryOp COSH
    • TANH

      public static final UnaryOp TANH
    • ARCSINH

      public static final UnaryOp ARCSINH
    • ARCCOSH

      public static final UnaryOp ARCCOSH
    • ARCTANH

      public static final UnaryOp ARCTANH
    • EXP

      public static final UnaryOp EXP
    • LOG

      public static final UnaryOp LOG
    • SQRT

      public static final UnaryOp SQRT
    • CBRT

      public static final UnaryOp CBRT
    • CEIL

      public static final UnaryOp CEIL
    • FLOOR

      public static final UnaryOp FLOOR
    • ABS

      public static final UnaryOp ABS
    • RINT

      public static final UnaryOp RINT
    • BIT_COUNT

      public static final UnaryOp BIT_COUNT
    • BIT_INVERT

      public static final UnaryOp BIT_INVERT
    • NOT

      public static final UnaryOp NOT
  • Method Details

    • values

      public static UnaryOp[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static UnaryOp 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 name
      NullPointerException - if the argument is null