Enum Op.Type

    • Enum Constant Detail

      • SCALAR

        public static final Op.Type SCALAR
      • SCALAR_BOOL

        public static final Op.Type SCALAR_BOOL
      • TRANSFORM_SAME

        public static final Op.Type TRANSFORM_SAME
      • TRANSFORM_FLOAT

        public static final Op.Type TRANSFORM_FLOAT
      • TRANSFORM_ANY

        public static final Op.Type TRANSFORM_ANY
      • TRANSFORM_BOOL

        public static final Op.Type TRANSFORM_BOOL
      • TRANSFORM_STRICT

        public static final Op.Type TRANSFORM_STRICT
      • PAIRWISE

        public static final Op.Type PAIRWISE
      • PAIRWISE_BOOL

        public static final Op.Type PAIRWISE_BOOL
      • SPECIAL

        public static final Op.Type SPECIAL
      • BROADCAST

        public static final Op.Type BROADCAST
      • BROADCAST_BOOL

        public static final Op.Type BROADCAST_BOOL
      • REDUCE_LONG

        public static final Op.Type REDUCE_LONG
      • REDUCE_SAME

        public static final Op.Type REDUCE_SAME
      • REDUCE_FLOAT

        public static final Op.Type REDUCE_FLOAT
      • REDUCE_BOOL

        public static final Op.Type REDUCE_BOOL
      • INDEXREDUCE

        public static final Op.Type INDEXREDUCE
      • VARIANCE

        public static final Op.Type VARIANCE
      • REDUCE3

        public static final Op.Type REDUCE3
      • GRID

        public static final Op.Type GRID
      • META

        public static final Op.Type META
      • AGGREGATION

        public static final Op.Type AGGREGATION
      • CUSTOM

        public static final Op.Type CUSTOM
      • GRADIENT

        public static final Op.Type GRADIENT
      • CONDITIONAL

        public static final Op.Type CONDITIONAL
      • LOOP

        public static final Op.Type LOOP
      • LOOP_COND

        public static final Op.Type LOOP_COND
      • RETURN

        public static final Op.Type RETURN
      • RANDOM

        public static final Op.Type RANDOM
      • SUMMARYSTATS

        public static final Op.Type SUMMARYSTATS
      • LOGIC

        public static final Op.Type LOGIC
    • Method Detail

      • values

        public static Op.Type[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Op.Type c : Op.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Op.Type 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