public static enum SetOperationRenderer.SetOperation extends java.lang.Enum<SetOperationRenderer.SetOperation>
| Enum Constant and Description |
|---|
EXCEPT |
EXCEPT_ALL |
INTERSECT |
INTERSECT_ALL |
UNION |
UNION_ALL |
| Modifier and Type | Method and Description |
|---|---|
static SetOperationRenderer.SetOperation |
valueOf(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.
|
public static final SetOperationRenderer.SetOperation UNION
public static final SetOperationRenderer.SetOperation UNION_ALL
public static final SetOperationRenderer.SetOperation INTERSECT
public static final SetOperationRenderer.SetOperation INTERSECT_ALL
public static final SetOperationRenderer.SetOperation EXCEPT
public static final SetOperationRenderer.SetOperation EXCEPT_ALL
public static SetOperationRenderer.SetOperation[] values()
for (SetOperationRenderer.SetOperation c : SetOperationRenderer.SetOperation.values()) System.out.println(c);
public static SetOperationRenderer.SetOperation valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null