public enum ResultSeverityEnum extends Enum<ResultSeverityEnum>
| Enum Constant and Description |
|---|
ERROR
The issue is sufficiently important to cause the action to fail
|
FATAL
The issue caused the action to fail, and no further checking could be performed
|
INFORMATION
The issue has no relation to the degree of success of the action
|
WARNING
The issue is not important enough to cause the action to fail, but may cause it to be performed suboptimally or in a way that is not as desired
|
| Modifier and Type | Field and Description |
|---|---|
static ResultSeverityEnum[] |
values
Convert from Enum ordinal to Enum type.
|
| Modifier and Type | Method and Description |
|---|---|
static ResultSeverityEnum |
fromCode(String theCode) |
String |
getCode() |
static ResultSeverityEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultSeverityEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultSeverityEnum INFORMATION
public static final ResultSeverityEnum WARNING
public static final ResultSeverityEnum ERROR
public static final ResultSeverityEnum FATAL
public static final ResultSeverityEnum[] values
ResultSeverityEnum resultSeverityEnum = ResultSeverityEnum.values[ordinal];public static ResultSeverityEnum[] values()
for (ResultSeverityEnum c : ResultSeverityEnum.values()) System.out.println(c);
public static ResultSeverityEnum 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 ResultSeverityEnum fromCode(String theCode)
Copyright © 2014–2019 University Health Network. All rights reserved.