|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ExprUnary.Op>
edu.mit.csail.sdg.alloy4compiler.ast.ExprUnary.Op
public static enum ExprUnary.Op
This class contains all possible unary operators.
Enum Constant Summary | |
---|---|
CARDINALITY
cardinality of x (truncated to the current integer bitwidth) |
|
CAST2INT
IntAtom-to-integer |
|
CAST2SIGINT
integer-to-IntAtom |
|
CLOSURE
closure |
|
EXACTLYOF
:exactly x (where x is a set or relation) |
|
LONE
lone x (where x is a set or relation) |
|
LONEOF
:lone x (where x is a unary set) |
|
NO
no x (where x is a set or relation) |
|
NOOP
No-Operation |
|
NOT
not f (where f is a formula) |
|
ONE
one x (where x is a set or relation) |
|
ONEOF
:one x (where x is a unary set) |
|
RCLOSURE
reflexive closure |
|
SETOF
:set x (where x is a set or relation) |
|
SOME
some x (where x is a set or relation) |
|
SOMEOF
:some x (where x is a unary set) |
|
TRANSPOSE
transpose |
Method Summary | |
---|---|
Expr |
make(Pos pos,
Expr sub)
Construct an ExprUnary node. |
Expr |
make(Pos pos,
Expr sub,
Err extraError,
long extraWeight)
Construct an ExprUnary node. |
java.lang.String |
toHTML()
Returns the human readable label already encoded for HTML |
java.lang.String |
toString()
Returns the human readable label for this operator |
static ExprUnary.Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExprUnary.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 ExprUnary.Op SOMEOF
public static final ExprUnary.Op LONEOF
public static final ExprUnary.Op ONEOF
public static final ExprUnary.Op SETOF
public static final ExprUnary.Op EXACTLYOF
public static final ExprUnary.Op NOT
public static final ExprUnary.Op NO
public static final ExprUnary.Op SOME
public static final ExprUnary.Op LONE
public static final ExprUnary.Op ONE
public static final ExprUnary.Op TRANSPOSE
public static final ExprUnary.Op RCLOSURE
public static final ExprUnary.Op CLOSURE
public static final ExprUnary.Op CARDINALITY
public static final ExprUnary.Op CAST2INT
public static final ExprUnary.Op CAST2SIGINT
public static final ExprUnary.Op NOOP
Method Detail |
---|
public static ExprUnary.Op[] values()
for (ExprUnary.Op c : ExprUnary.Op.values()) System.out.println(c);
public static ExprUnary.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, Expr sub)
pos
- - the original position of the "unary operator" in the file (can be null if unknown)sub
- - the subexpression
Alloy4 disallows multiplicity like this: "variable : one (X lone-> Y)",
that is, a some/lone/one in front of an arrow multiplicity declaration.
Alloy4 does allow "variable : set (X lone-> Y)", where we ignore the word "set".
(This desugaring is done by the ExprUnary.Op.make() method, so ExprUnary's constructor never sees it)
public final Expr make(Pos pos, Expr sub, Err extraError, long extraWeight)
pos
- - the original position of the "unary operator" in the file (can be null if unknown)sub
- - the subexpressionextraError
- - if nonnull, it will be appended as an extra errorextraWeight
- - it's the amount of extra weight
Alloy4 disallows multiplicity like this: "variable : one (X lone-> Y)",
that is, a some/lone/one in front of an arrow multiplicity declaration.
Alloy4 does allow "variable : set (X lone-> Y)", where we ignore the word "set".
(This desugaring is done by the ExprUnary.Op.make() method, so ExprUnary's constructor never sees it)
public final java.lang.String toString()
toString
in class java.lang.Enum<ExprUnary.Op>
public final java.lang.String toHTML()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |