public static enum FuzzyActivityDomain.markings extends java.lang.Enum<FuzzyActivityDomain.markings>
FuzzyActivity representing a hypothesis can be justified or not. Unjustified
activities are the meta-variables returned by the getMetaVariables() method.| Enum Constant and Description |
|---|
JUSTIFIED |
UNJUSTIFIED |
| Modifier and Type | Method and Description |
|---|---|
static FuzzyActivityDomain.markings |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FuzzyActivityDomain.markings[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FuzzyActivityDomain.markings UNJUSTIFIED
public static final FuzzyActivityDomain.markings JUSTIFIED
public static FuzzyActivityDomain.markings[] values()
for (FuzzyActivityDomain.markings c : FuzzyActivityDomain.markings.values()) System.out.println(c);
public static FuzzyActivityDomain.markings 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