Enum Class CEPKind

java.lang.Object
java.lang.Enum<CEPKind>
org.apache.beam.sdk.extensions.sql.impl.cep.CEPKind
All Implemented Interfaces:
Serializable, Comparable<CEPKind>, Constable

public enum CEPKind extends Enum<CEPKind> implements Serializable
CEPKind corresponds to Calcite's SqlKind. It records some special SQL operations.
  • Enum Constant Details

    • COUNT

      public static final CEPKind COUNT
    • AVG

      public static final CEPKind AVG
    • SUM

      public static final CEPKind SUM
    • FIRST

      public static final CEPKind FIRST
    • LAST

      public static final CEPKind LAST
    • PREV

      public static final CEPKind PREV
    • NEXT

      public static final CEPKind NEXT
    • EQUALS

      public static final CEPKind EQUALS
    • NOT_EQUALS

      public static final CEPKind NOT_EQUALS
    • GREATER_THAN

      public static final CEPKind GREATER_THAN
    • GREATER_THAN_OR_EQUAL

      public static final CEPKind GREATER_THAN_OR_EQUAL
    • LESS_THAN

      public static final CEPKind LESS_THAN
    • LESS_THAN_OR_EQUAL

      public static final CEPKind LESS_THAN_OR_EQUAL
    • TIMES

      public static final CEPKind TIMES
    • DIVIDE

      public static final CEPKind DIVIDE
    • PLUS

      public static final CEPKind PLUS
    • MINUS

      public static final CEPKind MINUS
    • NONE

      public static final CEPKind NONE
  • Method Details

    • values

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

      public static CEPKind valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null