|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<BooleanLiteralSet>
com.google.javascript.rhino.jstype.BooleanLiteralSet
public enum BooleanLiteralSet
A set in the domain {true,false}. There are four possible sets: {}, {true}, {false}, {true,false}.
Enum Constant Summary | |
---|---|
BOTH
|
|
EMPTY
|
|
FALSE
|
|
TRUE
|
Method Summary | |
---|---|
boolean |
contains(boolean literalValue)
Returns whether this contains the given literal value. |
static BooleanLiteralSet |
get(boolean literalValue)
Returns the singleton set {literalValue}. |
BooleanLiteralSet |
intersection(BooleanLiteralSet that)
Computes the intersection of this set and that . |
BooleanLiteralSet |
union(BooleanLiteralSet that)
Computes the union of this set and that . |
static BooleanLiteralSet |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BooleanLiteralSet[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final BooleanLiteralSet EMPTY
public static final BooleanLiteralSet TRUE
public static final BooleanLiteralSet FALSE
public static final BooleanLiteralSet BOTH
Method Detail |
---|
public static BooleanLiteralSet[] values()
for (BooleanLiteralSet c : BooleanLiteralSet.values()) System.out.println(c);
public static BooleanLiteralSet 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
NullPointerException
- if the argument is nullpublic BooleanLiteralSet intersection(BooleanLiteralSet that)
that
.
public BooleanLiteralSet union(BooleanLiteralSet that)
that
.
public boolean contains(boolean literalValue)
this
contains the given literal value.
public static BooleanLiteralSet get(boolean literalValue)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |