Package ca.uhn.fhir.model.dstu2.valueset
Enum AuditEventObjectLifecycleEnum
- java.lang.Object
-
- java.lang.Enum<AuditEventObjectLifecycleEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.AuditEventObjectLifecycleEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AuditEventObjectLifecycleEnum>
public enum AuditEventObjectLifecycleEnum extends Enum<AuditEventObjectLifecycleEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS___USEDisplay: Access / Use
Code Value: 6 Access / UseAGGREGATION__SUMMARIZATION__DERIVATIONDisplay: Aggregation, summarization, derivation
Code Value: 8 Aggregation, summarization, derivationAMENDMENTDisplay: Amendment
Code Value: 3 AmendmentARCHIVINGDisplay: Archiving
Code Value: 13 ArchivingDE_IDENTIFICATIONDisplay: De-identification
Code Value: 7 De-identificationDISCLOSUREDisplay: Disclosure
Code Value: 11 DisclosureEXPORT___COPY_TO_TARGETDisplay: Export / Copy to target
Code Value: 10 Export / Copy to targetIMPORT___COPY_FROM_ORIGINALDisplay: Import / Copy from original
Code Value: 2 Import / Copy from originalLOGICAL_DELETIONDisplay: Logical deletion
Code Value: 14 Logical deletionORIGINATION___CREATIONDisplay: Origination / Creation
Code Value: 1 Origination / CreationPERMANENT_ERASURE___PHYSICAL_DESTRUCTIONDisplay: Permanent erasure / Physical destruction
Code Value: 15 Permanent erasure / Physical destructionRECEIPT_OF_DISCLOSUREDisplay: Receipt of disclosure
Code Value: 12 Receipt of disclosureREPORTDisplay: Report
Code Value: 9 ReportTRANSLATIONDisplay: Translation
Code Value: 5 TranslationVERIFICATIONDisplay: Verification
Code Value: 4 Verification
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<AuditEventObjectLifecycleEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: AuditEventObjectLifecycle
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuditEventObjectLifecycleEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic AuditEventObjectLifecycleEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AuditEventObjectLifecycleEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORIGINATION___CREATION
public static final AuditEventObjectLifecycleEnum ORIGINATION___CREATION
Display: Origination / Creation
Code Value: 1 Origination / Creation
-
IMPORT___COPY_FROM_ORIGINAL
public static final AuditEventObjectLifecycleEnum IMPORT___COPY_FROM_ORIGINAL
Display: Import / Copy from original
Code Value: 2 Import / Copy from original
-
AMENDMENT
public static final AuditEventObjectLifecycleEnum AMENDMENT
Display: Amendment
Code Value: 3 Amendment
-
VERIFICATION
public static final AuditEventObjectLifecycleEnum VERIFICATION
Display: Verification
Code Value: 4 Verification
-
TRANSLATION
public static final AuditEventObjectLifecycleEnum TRANSLATION
Display: Translation
Code Value: 5 Translation
-
ACCESS___USE
public static final AuditEventObjectLifecycleEnum ACCESS___USE
Display: Access / Use
Code Value: 6 Access / Use
-
DE_IDENTIFICATION
public static final AuditEventObjectLifecycleEnum DE_IDENTIFICATION
Display: De-identification
Code Value: 7 De-identification
-
AGGREGATION__SUMMARIZATION__DERIVATION
public static final AuditEventObjectLifecycleEnum AGGREGATION__SUMMARIZATION__DERIVATION
Display: Aggregation, summarization, derivation
Code Value: 8 Aggregation, summarization, derivation
-
REPORT
public static final AuditEventObjectLifecycleEnum REPORT
Display: Report
Code Value: 9 Report
-
EXPORT___COPY_TO_TARGET
public static final AuditEventObjectLifecycleEnum EXPORT___COPY_TO_TARGET
Display: Export / Copy to target
Code Value: 10 Export / Copy to target
-
DISCLOSURE
public static final AuditEventObjectLifecycleEnum DISCLOSURE
Display: Disclosure
Code Value: 11 Disclosure
-
RECEIPT_OF_DISCLOSURE
public static final AuditEventObjectLifecycleEnum RECEIPT_OF_DISCLOSURE
Display: Receipt of disclosure
Code Value: 12 Receipt of disclosure
-
ARCHIVING
public static final AuditEventObjectLifecycleEnum ARCHIVING
Display: Archiving
Code Value: 13 Archiving
-
LOGICAL_DELETION
public static final AuditEventObjectLifecycleEnum LOGICAL_DELETION
Display: Logical deletion
Code Value: 14 Logical deletion
-
PERMANENT_ERASURE___PHYSICAL_DESTRUCTION
public static final AuditEventObjectLifecycleEnum PERMANENT_ERASURE___PHYSICAL_DESTRUCTION
Display: Permanent erasure / Physical destruction
Code Value: 15 Permanent erasure / Physical destruction
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: AuditEventObjectLifecycle- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<AuditEventObjectLifecycleEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static AuditEventObjectLifecycleEnum[] 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 (AuditEventObjectLifecycleEnum c : AuditEventObjectLifecycleEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditEventObjectLifecycleEnum 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
-
forCode
public static AuditEventObjectLifecycleEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-