
Package org.hl7.fhir.dstu3.model
Enum AuditEvent.AuditEventOutcome
- java.lang.Object
-
- java.lang.Enum<AuditEvent.AuditEventOutcome>
-
- org.hl7.fhir.dstu3.model.AuditEvent.AuditEventOutcome
-
- All Implemented Interfaces:
Serializable
,Comparable<AuditEvent.AuditEventOutcome>
- Enclosing class:
- AuditEvent
public static enum AuditEvent.AuditEventOutcome extends Enum<AuditEvent.AuditEventOutcome>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _0
The operation completed successfully (whether with warnings or not)._12
An error of such magnitude occurred that the system is no longer available for use (i.e._4
The action was not successful due to some kind of catered for error (often equivalent to an HTTP 400 response)._8
The action was not successful due to some kind of unexpected error (often equivalent to an HTTP 500 response).NULL
added to help the parsers with the generic types
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuditEvent.AuditEventOutcome
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static AuditEvent.AuditEventOutcome
valueOf(String name)
Returns the enum constant of this type with the specified name.static AuditEvent.AuditEventOutcome[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_0
public static final AuditEvent.AuditEventOutcome _0
The operation completed successfully (whether with warnings or not).
-
_4
public static final AuditEvent.AuditEventOutcome _4
The action was not successful due to some kind of catered for error (often equivalent to an HTTP 400 response).
-
_8
public static final AuditEvent.AuditEventOutcome _8
The action was not successful due to some kind of unexpected error (often equivalent to an HTTP 500 response).
-
_12
public static final AuditEvent.AuditEventOutcome _12
An error of such magnitude occurred that the system is no longer available for use (i.e. the system died).
-
NULL
public static final AuditEvent.AuditEventOutcome NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static AuditEvent.AuditEventOutcome[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AuditEvent.AuditEventOutcome c : AuditEvent.AuditEventOutcome.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditEvent.AuditEventOutcome valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromCode
public static AuditEvent.AuditEventOutcome fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-