public static enum Derivation.Behavior extends Enum<Derivation.Behavior>
| Enum Constant and Description |
|---|
MULT_BACKWARD
Backward chaining, toward raw data.
|
MULT_FORWARD
Forward chaining, toward derived propositions.
|
SINGLE_BACKWARD
Backward chaining, toward raw data.
|
SINGLE_FORWARD
Forward chaining, toward derived propositions.
|
| Modifier and Type | Method and Description |
|---|---|
static Derivation.Behavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Derivation.Behavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Derivation.Behavior SINGLE_FORWARD
public static final Derivation.Behavior SINGLE_BACKWARD
public static final Derivation.Behavior MULT_FORWARD
public static final Derivation.Behavior MULT_BACKWARD
public static Derivation.Behavior[] values()
for (Derivation.Behavior c : Derivation.Behavior.values()) System.out.println(c);
public static Derivation.Behavior valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2016 Emory University. All rights reserved.