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 protectedBuilder(FHIRPathType type) 
- 
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract FHIRPathSystemValuebuild()Build a FHIRPathNode using this builderFHIRPathAbstractSystemValue.Builderchildren(java.util.Collection<FHIRPathNode> children)This builder method is not supported - implementations will never have descendantsFHIRPathAbstractSystemValue.Builderchildren(FHIRPathNode... children)This builder method is not supported - implementations will never have childrenFHIRPathAbstractSystemValue.Buildername(java.lang.String name)The name of the FHIRPathNodeFHIRPathAbstractSystemValue.Builderpath(java.lang.String path)The path of the FHIRPathNodeFHIRPathAbstractSystemValue.Buildervalue(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.BuilderThe name of the FHIRPathNode- Specified by:
 namein interfaceFHIRPathNode.Builder- Overrides:
 namein 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.BuilderThe path of the FHIRPathNode- Specified by:
 pathin interfaceFHIRPathNode.Builder- Overrides:
 pathin 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:
 valuein interfaceFHIRPathNode.Builder- Overrides:
 valuein 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:
 childrenin interfaceFHIRPathNode.Builder- Overrides:
 childrenin 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:
 childrenin interfaceFHIRPathNode.Builder- Overrides:
 childrenin classFHIRPathAbstractNode.Builder- Returns:
 - A reference to this builder instance
 - Throws:
 java.lang.UnsupportedOperationException
 
- 
build
public abstract FHIRPathSystemValue build()
Description copied from interface:FHIRPathNode.BuilderBuild a FHIRPathNode using this builder- Specified by:
 buildin interfaceFHIRPathNode.Builder- Specified by:
 buildin classFHIRPathAbstractNode.Builder- Returns:
 - a new FHIRPathNode instance
 
 
 - 
 
 -