|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<UnaryExpression.Op>
forge.program.UnaryExpression.Op
public static enum UnaryExpression.Op
Enum Constant Summary | |
---|---|
BIT_NOT
bitwise negation |
|
BOOL
boolean value |
|
CARDINALITY
cardinality |
|
CLOSURE
translative closure |
|
LONE
lone multiplicity |
|
NEG
integer negation |
|
NO
no multiplicity |
|
NOT
boolean negation |
|
ONE
one multiplicity |
|
SOME
some multiplicity |
|
SUM
integer summation |
Method Summary | |
---|---|
java.lang.String |
toString()
|
static UnaryExpression.Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static UnaryExpression.Op[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final UnaryExpression.Op CLOSURE
public static final UnaryExpression.Op NO
public static final UnaryExpression.Op LONE
public static final UnaryExpression.Op ONE
public static final UnaryExpression.Op SOME
public static final UnaryExpression.Op BOOL
public static final UnaryExpression.Op NOT
public static final UnaryExpression.Op NEG
public static final UnaryExpression.Op SUM
public static final UnaryExpression.Op BIT_NOT
public static final UnaryExpression.Op CARDINALITY
Method Detail |
---|
public static final UnaryExpression.Op[] values()
for(UnaryExpression.Op c : UnaryExpression.Op.values()) System.out.println(c);
public static UnaryExpression.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 namepublic java.lang.String toString()
toString
in class java.lang.Enum<UnaryExpression.Op>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |