public static enum ConfigValidationErrors.Status extends Enum<ConfigValidationErrors.Status>
Enum Constant and Description |
---|
MAJOR
MAJOR error, the model will not run.
|
MINOR
MINOR error, basically a warning, The model should still run but may
not be what the user intended.
|
Modifier and Type | Method and Description |
---|---|
static ConfigValidationErrors.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigValidationErrors.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigValidationErrors.Status MINOR
public static final ConfigValidationErrors.Status MAJOR
public static ConfigValidationErrors.Status[] values()
for (ConfigValidationErrors.Status c : ConfigValidationErrors.Status.values()) System.out.println(c);
public static ConfigValidationErrors.Status 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 © 2015 University of Glasgow. All rights reserved.