|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EisSeverity>
com.mirth.match.client.models.EisSeverity
public enum EisSeverity
Copy of mirthmatch-lib com.mirth.match.eis.dto
Enum Constant Summary | |
---|---|
ERROR
Error (2) – Operation was unable to complete for identifiable data or software problems. |
|
INFO
Informational (0) – Used to relay to the client useful information about the outcome of the call. |
|
SEVERE
Severe (3) – Operation was unable to complete for system problems, such as “resource allocation failure”, or “hardware failure”, or unidentifiable data or software problems. |
|
UNDEFINED
|
|
WARNING
Warning (1) – Operation completed, but some portion did not complete as expected. |
Method Summary | |
---|---|
boolean |
isError()
|
boolean |
isInfo()
|
boolean |
isSevere()
|
boolean |
isSuccessful()
|
boolean |
isUndefined()
|
boolean |
isWarning()
|
static EisSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EisSeverity[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EisSeverity INFO
public static final EisSeverity WARNING
public static final EisSeverity ERROR
public static final EisSeverity SEVERE
public static final EisSeverity UNDEFINED
Method Detail |
---|
public static EisSeverity[] values()
for (EisSeverity c : EisSeverity.values()) System.out.println(c);
public static EisSeverity valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic boolean isSuccessful()
public boolean isUndefined()
public boolean isSevere()
public boolean isInfo()
public boolean isWarning()
public boolean isError()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |