Package com.ibm.fhir.audit
Enum AuditLogEventType
- java.lang.Object
-
- java.lang.Enum<AuditLogEventType>
-
- com.ibm.fhir.audit.AuditLogEventType
-
- All Implemented Interfaces:
Serializable
,Comparable<AuditLogEventType>
public enum AuditLogEventType extends Enum<AuditLogEventType>
This enum defines allowable types of audit log events that can be logged using Audit Log Service.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FHIR_BUNDLE
FHIR_CONFIGDATA
FHIR_CREATE
FHIR_DELETE
FHIR_HISTORY
FHIR_METADATA
FHIR_OPERATION
FHIR_PATCH
FHIR_READ
FHIR_SEARCH
FHIR_UPDATE
FHIR_VALIDATE
FHIR_VREAD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuditLogEventType
fromValue(String value)
String
value()
static AuditLogEventType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AuditLogEventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FHIR_CREATE
public static final AuditLogEventType FHIR_CREATE
-
FHIR_UPDATE
public static final AuditLogEventType FHIR_UPDATE
-
FHIR_PATCH
public static final AuditLogEventType FHIR_PATCH
-
FHIR_DELETE
public static final AuditLogEventType FHIR_DELETE
-
FHIR_READ
public static final AuditLogEventType FHIR_READ
-
FHIR_VREAD
public static final AuditLogEventType FHIR_VREAD
-
FHIR_HISTORY
public static final AuditLogEventType FHIR_HISTORY
-
FHIR_SEARCH
public static final AuditLogEventType FHIR_SEARCH
-
FHIR_BUNDLE
public static final AuditLogEventType FHIR_BUNDLE
-
FHIR_VALIDATE
public static final AuditLogEventType FHIR_VALIDATE
-
FHIR_METADATA
public static final AuditLogEventType FHIR_METADATA
-
FHIR_CONFIGDATA
public static final AuditLogEventType FHIR_CONFIGDATA
-
FHIR_OPERATION
public static final AuditLogEventType FHIR_OPERATION
-
-
Method Detail
-
values
public static AuditLogEventType[] 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 (AuditLogEventType c : AuditLogEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditLogEventType 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
-
value
public String value()
-
fromValue
public static AuditLogEventType fromValue(String value)
-
-