public enum IssueSeverityEnum extends Enum<IssueSeverityEnum>
| Enum Constant and Description |
|---|
ERROR
Display: Error
Code Value: error The issue is sufficiently important to cause the action to fail. |
FATAL
Display: Fatal
Code Value: fatal The issue caused the action to fail, and no further checking could be performed. |
INFORMATION
Display: Information
Code Value: information The issue has no relation to the degree of success of the action. |
WARNING
Display: Warning
Code Value: 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 IValueSetEnumBinder<IssueSeverityEnum> |
VALUESET_BINDER
Converts codes to their respective enumerated values
|
static String |
VALUESET_IDENTIFIER
Identifier for this Value Set:
|
static String |
VALUESET_NAME
Name for this Value Set:
IssueSeverity
|
| Modifier and Type | Method and Description |
|---|---|
static IssueSeverityEnum |
forCode(String theCode)
Returns the enumerated value associated with this code
|
String |
getCode()
Returns the code associated with this enumerated value
|
String |
getSystem()
Returns the code system associated with this enumerated value
|
static IssueSeverityEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueSeverityEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueSeverityEnum FATAL
public static final IssueSeverityEnum ERROR
public static final IssueSeverityEnum WARNING
public static final IssueSeverityEnum INFORMATION
public static final String VALUESET_IDENTIFIER
public static final String VALUESET_NAME
public static final IValueSetEnumBinder<IssueSeverityEnum> VALUESET_BINDER
public static IssueSeverityEnum[] values()
for (IssueSeverityEnum c : IssueSeverityEnum.values()) System.out.println(c);
public static IssueSeverityEnum 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 IssueSeverityEnum forCode(String theCode)
Copyright © 2014–2016 University Health Network. All rights reserved.