|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ExprQt.Op>
edu.mit.csail.sdg.alloy4compiler.ast.ExprQt.Op
public static enum ExprQt.Op
This class contains all possible quantification operators.
Enum Constant Summary | |
---|---|
ALL
all a,b:x | formula |
|
COMPREHENSION
{ a,b:x | formula } |
|
LONE
lone a,b:x | formula |
|
NO
no a,b:x | formula |
|
ONE
one a,b:x | formula |
|
SOME
some a,b:x | formula |
|
SUM
sum a,b:x | intExpression |
Method Summary | |
---|---|
Expr |
make(Pos pos,
Pos closingBracket,
java.util.List<Decl> decls,
Expr sub)
Constructs a quantification expression with "this" as the operator. |
java.lang.String |
toString()
Returns the human readable label for this operator |
static ExprQt.Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExprQt.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 ExprQt.Op ALL
public static final ExprQt.Op NO
public static final ExprQt.Op LONE
public static final ExprQt.Op ONE
public static final ExprQt.Op SOME
public static final ExprQt.Op SUM
public static final ExprQt.Op COMPREHENSION
Method Detail |
---|
public static ExprQt.Op[] values()
for (ExprQt.Op c : ExprQt.Op.values()) System.out.println(c);
public static ExprQt.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 Expr make(Pos pos, Pos closingBracket, java.util.List<Decl> decls, Expr sub)
pos
- - the position of the "quantifier" in the source file (or null if unknown)closingBracket
- - the position of the "closing bracket" in the source file (or null if unknown)decls
- - the list of variable declarations (each variable must be over a set or relation)sub
- - the body of the expressionpublic final java.lang.String toString()
toString
in class java.lang.Enum<ExprQt.Op>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |