Package ca.uhn.fhir.model.dstu2.valueset
Enum AuditEventActionEnum
- All Implemented Interfaces:
Serializable
,Comparable<AuditEventActionEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Create
Code Value: C Create a new database object, such as placing an order.Display: Delete
Code Value: D Delete items, such as a doctor master file record.Display: Execute
Code Value: E Perform a system or application function such as log-on, program execution or use of an object's method, or perform a query/search operation.Display: Read/View/Print
Code Value: R Display or print data, such as a doctor census.Display: Update
Code Value: U Update data, such as revise patient information. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<AuditEventActionEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: AuditEventAction -
Method Summary
Modifier and TypeMethodDescriptionstatic AuditEventActionEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic AuditEventActionEnum
Returns the enum constant of this type with the specified name.static AuditEventActionEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CREATE
Display: Create
Code Value: C Create a new database object, such as placing an order. -
READ_VIEW_PRINT
Display: Read/View/Print
Code Value: R Display or print data, such as a doctor census. -
UPDATE
Display: Update
Code Value: U Update data, such as revise patient information. -
DELETE
Display: Delete
Code Value: D Delete items, such as a doctor master file record. -
EXECUTE
Display: Execute
Code Value: E Perform a system or application function such as log-on, program execution or use of an object's method, or perform a query/search operation.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: AuditEventAction- See Also:
-
VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-