|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<SargSetOperator>
org.eigenbase.sarg.SargSetOperator
public enum SargSetOperator
SargSetOperator defines the supported set operators which can be used to
combine instances of SargExpr.
| Enum Constant Summary | |
|---|---|
COMPLEMENT
Set complement over exactly one child. |
|
INTERSECTION
Set intersection over any number of children (no children => universal set). |
|
UNION
Set union over any number of children (no children => empty set). |
|
| Method Summary | |
|---|---|
static SargSetOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SargSetOperator[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SargSetOperator INTERSECTION
public static final SargSetOperator UNION
public static final SargSetOperator COMPLEMENT
| Method Detail |
|---|
public static final SargSetOperator[] values()
for(SargSetOperator c : SargSetOperator.values())
System.out.println(c);
public static SargSetOperator valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||