Enum Class Set.SetOp

java.lang.Object
java.lang.Enum<Set.SetOp>
io.substrait.relation.Set.SetOp
All Implemented Interfaces:
Serializable, Comparable<Set.SetOp>, Constable
Enclosing class:
Set

public static enum Set.SetOp extends Enum<Set.SetOp>
  • Enum Constant Details

    • UNKNOWN

      public static final Set.SetOp UNKNOWN
    • MINUS_PRIMARY

      public static final Set.SetOp MINUS_PRIMARY
    • MINUS_PRIMARY_ALL

      public static final Set.SetOp MINUS_PRIMARY_ALL
    • MINUS_MULTISET

      public static final Set.SetOp MINUS_MULTISET
    • INTERSECTION_PRIMARY

      public static final Set.SetOp INTERSECTION_PRIMARY
    • INTERSECTION_MULTISET

      public static final Set.SetOp INTERSECTION_MULTISET
    • INTERSECTION_MULTISET_ALL

      public static final Set.SetOp INTERSECTION_MULTISET_ALL
    • UNION_DISTINCT

      public static final Set.SetOp UNION_DISTINCT
    • UNION_ALL

      public static final Set.SetOp UNION_ALL
  • Method Details

    • values

      public static Set.SetOp[] 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 Set.SetOp 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
    • toProto

      public SetRel.SetOp toProto()
    • fromProto

      public static Set.SetOp fromProto(SetRel.SetOp proto)