public enum ModelCheckingResult extends Enum<ModelCheckingResult>
| Enum Constant and Description |
|---|
SATISFIED |
UNKNOWN |
UNSATISFIED |
| Modifier and Type | Method and Description |
|---|---|
static String |
getString(ModelCheckingResult result) |
static ModelCheckingResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelCheckingResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelCheckingResult SATISFIED
public static final ModelCheckingResult UNSATISFIED
public static final ModelCheckingResult UNKNOWN
public static ModelCheckingResult[] values()
for (ModelCheckingResult c : ModelCheckingResult.values()) System.out.println(c);
public static ModelCheckingResult 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 nullpublic static String getString(ModelCheckingResult result)
Copyright © 2018. All rights reserved.