Package org.linuxforhealth.fhir.path
Class FHIRPathAbstractSystemValue.Builder
- java.lang.Object
-
- org.linuxforhealth.fhir.path.FHIRPathAbstractNode.Builder
-
- org.linuxforhealth.fhir.path.FHIRPathAbstractSystemValue.Builder
-
- All Implemented Interfaces:
FHIRPathNode.Builder
- Direct Known Subclasses:
FHIRPathAbstractTemporalValue.Builder
,FHIRPathBooleanValue.Builder
,FHIRPathDecimalValue.Builder
,FHIRPathIntegerValue.Builder
,FHIRPathQuantityValue.Builder
,FHIRPathStringValue.Builder
- Enclosing class:
- FHIRPathAbstractSystemValue
public abstract static class FHIRPathAbstractSystemValue.Builder extends FHIRPathAbstractNode.Builder
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Builder(FHIRPathType type)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract FHIRPathSystemValue
build()
Build a FHIRPathNode using this builderFHIRPathAbstractSystemValue.Builder
children(java.util.Collection<FHIRPathNode> children)
This builder method is not supported - implementations will never have descendantsFHIRPathAbstractSystemValue.Builder
children(FHIRPathNode... children)
This builder method is not supported - implementations will never have childrenFHIRPathAbstractSystemValue.Builder
name(java.lang.String name)
The name of the FHIRPathNodeFHIRPathAbstractSystemValue.Builder
path(java.lang.String path)
The path of the FHIRPathNodeFHIRPathAbstractSystemValue.Builder
value(FHIRPathSystemValue value)
This builder method is not supported - implementations will never have a child system value
-
-
-
Constructor Detail
-
Builder
protected Builder(FHIRPathType type)
-
-
Method Detail
-
name
public FHIRPathAbstractSystemValue.Builder name(java.lang.String name)
Description copied from interface:FHIRPathNode.Builder
The name of the FHIRPathNode- Specified by:
name
in interfaceFHIRPathNode.Builder
- Overrides:
name
in classFHIRPathAbstractNode.Builder
- Parameters:
name
- the name of the FHIRPathNode- Returns:
- A reference to this builder instance
-
path
public FHIRPathAbstractSystemValue.Builder path(java.lang.String path)
Description copied from interface:FHIRPathNode.Builder
The path of the FHIRPathNode- Specified by:
path
in interfaceFHIRPathNode.Builder
- Overrides:
path
in classFHIRPathAbstractNode.Builder
- Parameters:
path
- the path of the FHIRPathNode- Returns:
- A reference to this builder instance
-
value
public final FHIRPathAbstractSystemValue.Builder value(FHIRPathSystemValue value)
This builder method is not supported - implementations will never have a child system value- Specified by:
value
in interfaceFHIRPathNode.Builder
- Overrides:
value
in classFHIRPathAbstractNode.Builder
- Returns:
- A reference to this builder instance
- Throws:
java.lang.UnsupportedOperationException
-
children
public final FHIRPathAbstractSystemValue.Builder children(FHIRPathNode... children)
This builder method is not supported - implementations will never have children- Specified by:
children
in interfaceFHIRPathNode.Builder
- Overrides:
children
in classFHIRPathAbstractNode.Builder
- Returns:
- A reference to this builder instance
- Throws:
java.lang.UnsupportedOperationException
-
children
public final FHIRPathAbstractSystemValue.Builder children(java.util.Collection<FHIRPathNode> children)
This builder method is not supported - implementations will never have descendants- Specified by:
children
in interfaceFHIRPathNode.Builder
- Overrides:
children
in classFHIRPathAbstractNode.Builder
- Returns:
- A reference to this builder instance
- Throws:
java.lang.UnsupportedOperationException
-
build
public abstract FHIRPathSystemValue build()
Description copied from interface:FHIRPathNode.Builder
Build a FHIRPathNode using this builder- Specified by:
build
in interfaceFHIRPathNode.Builder
- Specified by:
build
in classFHIRPathAbstractNode.Builder
- Returns:
- a new FHIRPathNode instance
-
-