public enum ModelCacheState extends Enum<ModelCacheState>
| Enum Constant and Description |
|---|
FAILED
incorrect model/merging fails because of incompleteness of procedure;
|
INVALID
clash in model/merging fails because of direct contradiction;
|
UNKNOWN
untested model cache.
|
VALID
valid model/success in merging;
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
usageByState() |
static ModelCacheState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelCacheState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelCacheState INVALID
public static final ModelCacheState VALID
public static final ModelCacheState FAILED
public static final ModelCacheState UNKNOWN
public static ModelCacheState[] values()
for (ModelCacheState c : ModelCacheState.values()) System.out.println(c);
public static ModelCacheState 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 boolean usageByState()
Copyright © 2016 The University of Manchester. All rights reserved.