Package com.ibm.fhir.model.type
Class Reference.Builder
- java.lang.Object
-
- com.ibm.fhir.model.builder.AbstractBuilder<Element>
-
- com.ibm.fhir.model.type.Element.Builder
-
- com.ibm.fhir.model.type.Reference.Builder
-
- Enclosing class:
- Reference
public static class Reference.Builder extends Element.Builder
-
-
Field Summary
-
Fields inherited from class com.ibm.fhir.model.type.Element.Builder
extension, id
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Referencebuild()Build theReferenceReference.Builderdisplay(String display)Plain text narrative that identifies the resource in addition to the resource reference.Reference.Builderextension(Extension... extension)May be used to represent additional information that is not part of the basic definition of the element.Reference.Builderextension(Collection<Extension> extension)May be used to represent additional information that is not part of the basic definition of the element.protected Reference.Builderfrom(Reference reference)Reference.Builderid(String id)Unique id for the element within a resource (for internal references).Reference.Builderidentifier(Identifier identifier)An identifier for the target resource.Reference.Builderreference(String reference)A reference to a location at which the other resource is found.Reference.Buildertype(Uri type)The expected type of the target of the reference.-
Methods inherited from class com.ibm.fhir.model.type.Element.Builder
from
-
-
-
-
Method Detail
-
id
public Reference.Builder id(String id)
Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.- Overrides:
idin classElement.Builder- Parameters:
id- Unique id for inter-element referencing- Returns:
- A reference to this Builder instance
-
extension
public Reference.Builder extension(Extension... extension)
May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.Adds new element(s) to the existing list
- Overrides:
extensionin classElement.Builder- Parameters:
extension- Additional content defined by implementations- Returns:
- A reference to this Builder instance
-
extension
public Reference.Builder extension(Collection<Extension> extension)
May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.Replaces the existing list with a new one containing elements from the Collection
- Overrides:
extensionin classElement.Builder- Parameters:
extension- Additional content defined by implementations- Returns:
- A reference to this Builder instance
-
reference
public Reference.Builder reference(String reference)
A reference to a location at which the other resource is found. The reference may be a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources.- Parameters:
reference- Literal reference, Relative, internal or absolute URL- Returns:
- A reference to this Builder instance
-
type
public Reference.Builder type(Uri type)
The expected type of the target of the reference. If both Reference.type and Reference.reference are populated and Reference.reference is a FHIR URL, both SHALL be consistent.The type is the Canonical URL of Resource Definition that is the type this reference refers to. References are URLs that are relative to http://hl7.org/fhir/StructureDefinition/ e.g. "Patient" is a reference to http://hl7. org/fhir/StructureDefinition/Patient. Absolute URLs are only allowed for logical models (and can only be used in references in logical models, not resources).
- Parameters:
type- Type the reference refers to (e.g. "Patient")- Returns:
- A reference to this Builder instance
-
identifier
public Reference.Builder identifier(Identifier identifier)
An identifier for the target resource. This is used when there is no way to reference the other resource directly, either because the entity it represents is not available through a FHIR server, or because there is no way for the author of the resource to convert a known identifier to an actual location. There is no requirement that a Reference. identifier point to something that is actually exposed as a FHIR instance, but it SHALL point to a business concept that would be expected to be exposed as a FHIR instance, and that instance would need to be of a FHIR resource type allowed by the reference.- Parameters:
identifier- Logical reference, when literal reference is not known- Returns:
- A reference to this Builder instance
-
display
public Reference.Builder display(String display)
Plain text narrative that identifies the resource in addition to the resource reference.- Parameters:
display- Text alternative for the resource- Returns:
- A reference to this Builder instance
-
build
public Reference build()
Build theReference- Specified by:
buildin interfaceBuilder<Element>- Specified by:
buildin classElement.Builder- Returns:
- An immutable object of type
Reference - Throws:
IllegalStateException- if the current state cannot be built into a valid Reference per the base specification
-
from
protected Reference.Builder from(Reference reference)
-
-