Enum ActivityDefinitionKind.ValueSet
- java.lang.Object
-
- java.lang.Enum<ActivityDefinitionKind.ValueSet>
-
- com.ibm.fhir.model.type.code.ActivityDefinitionKind.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<ActivityDefinitionKind.ValueSet>
- Enclosing class:
- ActivityDefinitionKind
public static enum ActivityDefinitionKind.ValueSet extends Enum<ActivityDefinitionKind.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPOINTMENTAppointmentAPPOINTMENT_RESPONSEAppointmentResponseCARE_PLANCarePlanCLAIMClaimCOMMUNICATION_REQUESTCommunicationRequestCONTRACTContractDEVICE_REQUESTDeviceRequestENROLLMENT_REQUESTEnrollmentRequestIMMUNIZATION_RECOMMENDATIONImmunizationRecommendationMEDICATION_REQUESTMedicationRequestNUTRITION_ORDERNutritionOrderSERVICE_REQUESTServiceRequestSUPPLY_REQUESTSupplyRequestTASKTaskVISION_PRESCRIPTIONVisionPrescription
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ActivityDefinitionKind.ValueSetfrom(String value)Factory method for creating ActivityDefinitionKind.ValueSet values from a passed string value.Stringvalue()static ActivityDefinitionKind.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static ActivityDefinitionKind.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPOINTMENT
public static final ActivityDefinitionKind.ValueSet APPOINTMENT
AppointmentA booking of a healthcare event among patient(s), practitioner(s), related person(s) and/or device(s) for a specific date/time. This may result in one or more Encounter(s).
-
APPOINTMENT_RESPONSE
public static final ActivityDefinitionKind.ValueSet APPOINTMENT_RESPONSE
AppointmentResponseA reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.
-
CARE_PLAN
public static final ActivityDefinitionKind.ValueSet CARE_PLAN
CarePlanHealthcare plan for patient or group.
-
CLAIM
public static final ActivityDefinitionKind.ValueSet CLAIM
ClaimClaim, Pre-determination or Pre-authorization.
-
COMMUNICATION_REQUEST
public static final ActivityDefinitionKind.ValueSet COMMUNICATION_REQUEST
CommunicationRequestA request for information to be sent to a receiver.
-
CONTRACT
public static final ActivityDefinitionKind.ValueSet CONTRACT
ContractLegal Agreement.
-
DEVICE_REQUEST
public static final ActivityDefinitionKind.ValueSet DEVICE_REQUEST
DeviceRequestMedical device request.
-
ENROLLMENT_REQUEST
public static final ActivityDefinitionKind.ValueSet ENROLLMENT_REQUEST
EnrollmentRequestEnrollment request.
-
IMMUNIZATION_RECOMMENDATION
public static final ActivityDefinitionKind.ValueSet IMMUNIZATION_RECOMMENDATION
ImmunizationRecommendationGuidance or advice relating to an immunization.
-
MEDICATION_REQUEST
public static final ActivityDefinitionKind.ValueSet MEDICATION_REQUEST
MedicationRequestOrdering of medication for patient or group.
-
NUTRITION_ORDER
public static final ActivityDefinitionKind.ValueSet NUTRITION_ORDER
NutritionOrderDiet, formula or nutritional supplement request.
-
SERVICE_REQUEST
public static final ActivityDefinitionKind.ValueSet SERVICE_REQUEST
ServiceRequestA record of a request for service such as diagnostic investigations, treatments, or operations to be performed.
-
SUPPLY_REQUEST
public static final ActivityDefinitionKind.ValueSet SUPPLY_REQUEST
SupplyRequestRequest for a medication, substance or device.
-
TASK
public static final ActivityDefinitionKind.ValueSet TASK
TaskA task to be performed.
-
VISION_PRESCRIPTION
public static final ActivityDefinitionKind.ValueSet VISION_PRESCRIPTION
VisionPrescriptionPrescription for vision correction products for a patient.
-
-
Method Detail
-
values
public static ActivityDefinitionKind.ValueSet[] 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 (ActivityDefinitionKind.ValueSet c : ActivityDefinitionKind.ValueSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActivityDefinitionKind.ValueSet 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()
- Returns:
- The java.lang.String value of the code represented by this enum
-
from
public static ActivityDefinitionKind.ValueSet from(String value)
Factory method for creating ActivityDefinitionKind.ValueSet values from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
-