public static enum ConditionalStructure.Generator extends java.lang.Enum<ConditionalStructure.Generator>
| Enum Constant and Description |
|---|
CG_MINUS
The possible world falsifies the conditional
|
CG_ONE
The possible world neither verifies nor falsifies the conditional because the premise is false
|
CG_PLUS
The possible world verifies the conditional
|
| Modifier and Type | Method and Description |
|---|---|
static ConditionalStructure.Generator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConditionalStructure.Generator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionalStructure.Generator CG_PLUS
public static final ConditionalStructure.Generator CG_MINUS
public static final ConditionalStructure.Generator CG_ONE
public static ConditionalStructure.Generator[] values()
for (ConditionalStructure.Generator c : ConditionalStructure.Generator.values()) System.out.println(c);
public static ConditionalStructure.Generator 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 namejava.lang.NullPointerException - if the argument is null