|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ExprConstant.Op>
edu.mit.csail.sdg.alloy4compiler.ast.ExprConstant.Op
public static enum ExprConstant.Op
This class contains all possible constant types.
Enum Constant Summary | |
---|---|
EMPTYNESS
the emptyness relation whose type is UNIV |
|
FALSE
false |
|
IDEN
the builtin "iden" relation |
|
MAX
the maximum integer constant |
|
MIN
the minimum integer constant |
|
NEXT
the "next" relation between integers |
|
NUMBER
an integer constant |
|
STRING
a String constant |
|
TRUE
true |
Method Summary | |
---|---|
ExprConstant |
make(Pos pos,
int number)
Makes an ExprConstant node |
ExprConstant |
make(Pos pos,
java.lang.String string)
Makes an ExprConstant node |
java.lang.String |
toString()
Returns the human readable label for this operator. |
static ExprConstant.Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExprConstant.Op[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ExprConstant.Op TRUE
public static final ExprConstant.Op FALSE
public static final ExprConstant.Op IDEN
public static final ExprConstant.Op MIN
public static final ExprConstant.Op MAX
public static final ExprConstant.Op NEXT
public static final ExprConstant.Op EMPTYNESS
public static final ExprConstant.Op STRING
public static final ExprConstant.Op NUMBER
Method Detail |
---|
public static ExprConstant.Op[] values()
for (ExprConstant.Op c : ExprConstant.Op.values()) System.out.println(c);
public static ExprConstant.Op 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 name
java.lang.NullPointerException
- if the argument is nullpublic final ExprConstant make(Pos pos, int number)
pos
- - the original position in the source file (can be null if unknown)number
- - the number (this argument is ignored if op!=NUMBER)public final ExprConstant make(Pos pos, java.lang.String string)
pos
- - the original position in the source file (can be null if unknown)string
- - the string (this argument is ignored if op!=STRING)public final java.lang.String toString()
toString
in class java.lang.Enum<ExprConstant.Op>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |