Enum SetOperationRenderer.SetOperation
- java.lang.Object
-
- java.lang.Enum<SetOperationRenderer.SetOperation>
-
- org.hotrod.runtime.livesql.dialects.SetOperationRenderer.SetOperation
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SetOperationRenderer.SetOperation>
- Enclosing class:
- SetOperationRenderer
public static enum SetOperationRenderer.SetOperation extends java.lang.Enum<SetOperationRenderer.SetOperation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXCEPTEXCEPT_ALLINTERSECTINTERSECT_ALLUNIONUNION_ALL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SetOperationRenderer.SetOperationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SetOperationRenderer.SetOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNION
public static final SetOperationRenderer.SetOperation UNION
-
UNION_ALL
public static final SetOperationRenderer.SetOperation UNION_ALL
-
INTERSECT
public static final SetOperationRenderer.SetOperation INTERSECT
-
INTERSECT_ALL
public static final SetOperationRenderer.SetOperation INTERSECT_ALL
-
EXCEPT
public static final SetOperationRenderer.SetOperation EXCEPT
-
EXCEPT_ALL
public static final SetOperationRenderer.SetOperation EXCEPT_ALL
-
-
Method Detail
-
values
public static SetOperationRenderer.SetOperation[] 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 (SetOperationRenderer.SetOperation c : SetOperationRenderer.SetOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SetOperationRenderer.SetOperation valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-