Package org.hl7.fhir.dstu2.model
Enum ResourceType
- java.lang.Object
-
- java.lang.Enum<ResourceType>
-
- org.hl7.fhir.dstu2.model.ResourceType
-
- All Implemented Interfaces:
Serializable,Comparable<ResourceType>
public enum ResourceType extends Enum<ResourceType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResourceTypefromCode(String code)StringgetPath()static ResourceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ResourceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Account
public static final ResourceType Account
-
AllergyIntolerance
public static final ResourceType AllergyIntolerance
-
Appointment
public static final ResourceType Appointment
-
AppointmentResponse
public static final ResourceType AppointmentResponse
-
AuditEvent
public static final ResourceType AuditEvent
-
Basic
public static final ResourceType Basic
-
Binary
public static final ResourceType Binary
-
BodySite
public static final ResourceType BodySite
-
Bundle
public static final ResourceType Bundle
-
CarePlan
public static final ResourceType CarePlan
-
Claim
public static final ResourceType Claim
-
ClaimResponse
public static final ResourceType ClaimResponse
-
ClinicalImpression
public static final ResourceType ClinicalImpression
-
Communication
public static final ResourceType Communication
-
CommunicationRequest
public static final ResourceType CommunicationRequest
-
Composition
public static final ResourceType Composition
-
ConceptMap
public static final ResourceType ConceptMap
-
Condition
public static final ResourceType Condition
-
Conformance
public static final ResourceType Conformance
-
Contract
public static final ResourceType Contract
-
Coverage
public static final ResourceType Coverage
-
DataElement
public static final ResourceType DataElement
-
DetectedIssue
public static final ResourceType DetectedIssue
-
Device
public static final ResourceType Device
-
DeviceComponent
public static final ResourceType DeviceComponent
-
DeviceMetric
public static final ResourceType DeviceMetric
-
DeviceUseRequest
public static final ResourceType DeviceUseRequest
-
DeviceUseStatement
public static final ResourceType DeviceUseStatement
-
DiagnosticOrder
public static final ResourceType DiagnosticOrder
-
DiagnosticReport
public static final ResourceType DiagnosticReport
-
DocumentManifest
public static final ResourceType DocumentManifest
-
DocumentReference
public static final ResourceType DocumentReference
-
EligibilityRequest
public static final ResourceType EligibilityRequest
-
EligibilityResponse
public static final ResourceType EligibilityResponse
-
Encounter
public static final ResourceType Encounter
-
EnrollmentRequest
public static final ResourceType EnrollmentRequest
-
EnrollmentResponse
public static final ResourceType EnrollmentResponse
-
EpisodeOfCare
public static final ResourceType EpisodeOfCare
-
ExplanationOfBenefit
public static final ResourceType ExplanationOfBenefit
-
FamilyMemberHistory
public static final ResourceType FamilyMemberHistory
-
Flag
public static final ResourceType Flag
-
Goal
public static final ResourceType Goal
-
Group
public static final ResourceType Group
-
HealthcareService
public static final ResourceType HealthcareService
-
ImagingObjectSelection
public static final ResourceType ImagingObjectSelection
-
ImagingStudy
public static final ResourceType ImagingStudy
-
Immunization
public static final ResourceType Immunization
-
ImmunizationRecommendation
public static final ResourceType ImmunizationRecommendation
-
ImplementationGuide
public static final ResourceType ImplementationGuide
-
List
public static final ResourceType List
-
Location
public static final ResourceType Location
-
Media
public static final ResourceType Media
-
Medication
public static final ResourceType Medication
-
MedicationAdministration
public static final ResourceType MedicationAdministration
-
MedicationDispense
public static final ResourceType MedicationDispense
-
MedicationOrder
public static final ResourceType MedicationOrder
-
MedicationStatement
public static final ResourceType MedicationStatement
-
MessageHeader
public static final ResourceType MessageHeader
-
NamingSystem
public static final ResourceType NamingSystem
-
NutritionOrder
public static final ResourceType NutritionOrder
-
Observation
public static final ResourceType Observation
-
OperationDefinition
public static final ResourceType OperationDefinition
-
OperationOutcome
public static final ResourceType OperationOutcome
-
Order
public static final ResourceType Order
-
OrderResponse
public static final ResourceType OrderResponse
-
Organization
public static final ResourceType Organization
-
Parameters
public static final ResourceType Parameters
-
Patient
public static final ResourceType Patient
-
PaymentNotice
public static final ResourceType PaymentNotice
-
PaymentReconciliation
public static final ResourceType PaymentReconciliation
-
Person
public static final ResourceType Person
-
Practitioner
public static final ResourceType Practitioner
-
Procedure
public static final ResourceType Procedure
-
ProcedureRequest
public static final ResourceType ProcedureRequest
-
ProcessRequest
public static final ResourceType ProcessRequest
-
ProcessResponse
public static final ResourceType ProcessResponse
-
Provenance
public static final ResourceType Provenance
-
Questionnaire
public static final ResourceType Questionnaire
-
QuestionnaireResponse
public static final ResourceType QuestionnaireResponse
-
ReferralRequest
public static final ResourceType ReferralRequest
-
RelatedPerson
public static final ResourceType RelatedPerson
-
RiskAssessment
public static final ResourceType RiskAssessment
-
Schedule
public static final ResourceType Schedule
-
SearchParameter
public static final ResourceType SearchParameter
-
Slot
public static final ResourceType Slot
-
Specimen
public static final ResourceType Specimen
-
StructureDefinition
public static final ResourceType StructureDefinition
-
Subscription
public static final ResourceType Subscription
-
Substance
public static final ResourceType Substance
-
SupplyDelivery
public static final ResourceType SupplyDelivery
-
SupplyRequest
public static final ResourceType SupplyRequest
-
TestScript
public static final ResourceType TestScript
-
ValueSet
public static final ResourceType ValueSet
-
VisionPrescription
public static final ResourceType VisionPrescription
-
-
Method Detail
-
values
public static ResourceType[] 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 (ResourceType c : ResourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceType 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 ResourceType fromCode(String code) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
-