Class PathBuilder
java.lang.Object
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.topology.pcep.rev220730.pcep.client.attributes.path.computation.client.reported.lsp.PathBuilder
Class that builds
Path instances. Overall design of the class is that of a
fluent interface, where method chaining is used.
In general, this class is supposed to be used like this template:
Path createPath(int fooXyzzy, int barBaz) {
return new PathBuilder()
.setFoo(new FooBuilder().setXyzzy(fooXyzzy).build())
.setBar(new BarBuilder().setBaz(barBaz).build())
.build();
}
This pattern is supported by the immutable nature of Path, as instances can be freely passed around without worrying about synchronization issues.
As a side note: method chaining results in:
- very efficient Java bytecode, as the method invocation result, in this case the Builder reference, is
on the stack, so further method invocations just need to fill method arguments for the next method
invocation, which is terminated by
build(), which is then returned from the method - better understanding by humans, as the scope of mutable state (the builder) is kept to a minimum and is very localized
- better optimization opportunities, as the object scope is minimized in terms of invocation (rather than method) stack, making escape analysis a lot easier. Given enough compiler (JIT/AOT) prowess, the cost of th builder object can be completely eliminated
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct an empty builder.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.BandwidthObject arg) Construct a new builder initialized from specifiedBandwidthObject.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ClasstypeObject arg) Construct a new builder initialized from specifiedClasstypeObject.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ExcludeRouteObject arg) Construct a new builder initialized from specifiedExcludeRouteObject.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ExplicitRouteObject arg) Construct a new builder initialized from specifiedExplicitRouteObject.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.IncludeRouteObject arg) Construct a new builder initialized from specifiedIncludeRouteObject.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.LspaObject arg) Construct a new builder initialized from specifiedLspaObject.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.LspAttributes arg) Construct a new builder initialized from specifiedLspAttributes.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.OfObject arg) Construct a new builder initialized from specifiedOfObject.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.PathDefinition arg) Construct a new builder initialized from specifiedPathDefinition.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ReoptimizationBandwidthObject arg) Construct a new builder initialized from specifiedReoptimizationBandwidthObject.PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ReportedRouteObject arg) Construct a new builder initialized from specifiedReportedRouteObject.PathBuilder(Path base) Construct a builder initialized with state from specifiedPath. -
Method Summary
Modifier and TypeMethodDescriptionaddAugmentation(org.opendaylight.yangtools.yang.binding.Augmentation<Path> augmentation) Add an augmentation to this builder's product.<E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<Path>>
E$$augmentation(Class<E$$> augmentationType) Return the specified augmentation, if it is present in this builder.@NonNull Pathbuild()A newPathinstance.voidfieldsFrom(org.opendaylight.yangtools.yang.binding.DataObject arg) Set fields from given grouping argument.org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.bandwidth.object.BandwidthReturn current value associated with the property corresponding toBandwidthObject.getBandwidth().org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.classtype.object.ClassTypeReturn current value associated with the property corresponding toClasstypeObject.getClassType().org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.explicit.route.object.ErogetEro()Return current value associated with the property corresponding toExplicitRouteObject.getEro().org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.include.route.object.IrogetIro()Return current value associated with the property corresponding toIncludeRouteObject.getIro().org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.lspa.object.LspagetLspa()Return current value associated with the property corresponding toLspaObject.getLspa().org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.LspIdgetLspId()Return current value associated with the property corresponding toPath.getLspId().List<org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.lsp.attributes.Metrics>Return current value associated with the property corresponding toLspAttributes.getMetrics().org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.object.OfgetOf()Return current value associated with the property corresponding toOfObject.getOf().org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reoptimization.bandwidth.object.ReoptimizationBandwidthReturn current value associated with the property corresponding toReoptimizationBandwidthObject.getReoptimizationBandwidth().org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reported.route.object.RrogetRro()Return current value associated with the property corresponding toReportedRouteObject.getRro().org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.exclude.route.object.XrogetXro()Return current value associated with the property corresponding toExcludeRouteObject.getXro().key()Return current value associated with the property corresponding toPath.key().removeAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<Path>> augmentationType) Remove an augmentation from this builder's product.setBandwidth(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.bandwidth.object.Bandwidth value) Set the property corresponding toBandwidthObject.getBandwidth()to the specified value.setClassType(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.classtype.object.ClassType value) Set the property corresponding toClasstypeObject.getClassType()to the specified value.setEro(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.explicit.route.object.Ero value) Set the property corresponding toExplicitRouteObject.getEro()to the specified value.setIro(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.include.route.object.Iro value) Set the property corresponding toIncludeRouteObject.getIro()to the specified value.setLspa(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.lspa.object.Lspa value) Set the property corresponding toLspaObject.getLspa()to the specified value.setLspId(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.LspId value) Set the property corresponding toPath.getLspId()to the specified value.setMetrics(List<org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.lsp.attributes.Metrics> values) Set the property corresponding toLspAttributes.getMetrics()to the specified value.setOf(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.object.Of value) Set the property corresponding toOfObject.getOf()to the specified value.setReoptimizationBandwidth(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reoptimization.bandwidth.object.ReoptimizationBandwidth value) Set the property corresponding toReoptimizationBandwidthObject.getReoptimizationBandwidth()to the specified value.setRro(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reported.route.object.Rro value) Set the property corresponding toReportedRouteObject.getRro()to the specified value.setXro(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.exclude.route.object.Xro value) Set the property corresponding toExcludeRouteObject.getXro()to the specified value.Set the key value corresponding toPath.key()to the specified value.
-
Constructor Details
-
PathBuilder
public PathBuilder()Construct an empty builder. -
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.PathDefinition arg) Construct a new builder initialized from specifiedPathDefinition.- Parameters:
arg- PathDefinition from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ExplicitRouteObject arg) Construct a new builder initialized from specifiedExplicitRouteObject.- Parameters:
arg- ExplicitRouteObject from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.LspAttributes arg) Construct a new builder initialized from specifiedLspAttributes.- Parameters:
arg- LspAttributes from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.LspaObject arg) Construct a new builder initialized from specifiedLspaObject.- Parameters:
arg- LspaObject from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.BandwidthObject arg) Construct a new builder initialized from specifiedBandwidthObject.- Parameters:
arg- BandwidthObject from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ReoptimizationBandwidthObject arg) Construct a new builder initialized from specifiedReoptimizationBandwidthObject.- Parameters:
arg- ReoptimizationBandwidthObject from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.IncludeRouteObject arg) Construct a new builder initialized from specifiedIncludeRouteObject.- Parameters:
arg- IncludeRouteObject from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ReportedRouteObject arg) Construct a new builder initialized from specifiedReportedRouteObject.- Parameters:
arg- ReportedRouteObject from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ExcludeRouteObject arg) Construct a new builder initialized from specifiedExcludeRouteObject.- Parameters:
arg- ExcludeRouteObject from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.OfObject arg) Construct a new builder initialized from specifiedOfObject.- Parameters:
arg- OfObject from which the builder should be initialized
-
PathBuilder
public PathBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ClasstypeObject arg) Construct a new builder initialized from specifiedClasstypeObject.- Parameters:
arg- ClasstypeObject from which the builder should be initialized
-
PathBuilder
Construct a builder initialized with state from specifiedPath.- Parameters:
base- Path from which the builder should be initialized
-
-
Method Details
-
fieldsFrom
public void fieldsFrom(org.opendaylight.yangtools.yang.binding.DataObject arg) Set fields from given grouping argument. Valid argument is instance of one of following types:ClasstypeObjectReoptimizationBandwidthObjectBandwidthObjectOfObjectPathDefinitionReportedRouteObjectLspAttributesIncludeRouteObjectExcludeRouteObjectLspaObjectExplicitRouteObject
- Parameters:
arg- grouping object- Throws:
IllegalArgumentException- if given argument is none of valid types or has property with incompatible value
-
key
Return current value associated with the property corresponding toPath.key().- Returns:
- current value
-
getBandwidth
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.bandwidth.object.Bandwidth getBandwidth()Return current value associated with the property corresponding toBandwidthObject.getBandwidth().- Returns:
- current value
-
getClassType
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.classtype.object.ClassType getClassType()Return current value associated with the property corresponding toClasstypeObject.getClassType().- Returns:
- current value
-
getEro
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.explicit.route.object.Ero getEro()Return current value associated with the property corresponding toExplicitRouteObject.getEro().- Returns:
- current value
-
getIro
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.include.route.object.Iro getIro()Return current value associated with the property corresponding toIncludeRouteObject.getIro().- Returns:
- current value
-
getLspId
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.LspId getLspId()Return current value associated with the property corresponding toPath.getLspId().- Returns:
- current value
-
getLspa
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.lspa.object.Lspa getLspa()Return current value associated with the property corresponding toLspaObject.getLspa().- Returns:
- current value
-
getMetrics
public List<org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.lsp.attributes.Metrics> getMetrics()Return current value associated with the property corresponding toLspAttributes.getMetrics().- Returns:
- current value
-
getOf
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.object.Of getOf()Return current value associated with the property corresponding toOfObject.getOf().- Returns:
- current value
-
getReoptimizationBandwidth
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reoptimization.bandwidth.object.ReoptimizationBandwidth getReoptimizationBandwidth()Return current value associated with the property corresponding toReoptimizationBandwidthObject.getReoptimizationBandwidth().- Returns:
- current value
-
getRro
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reported.route.object.Rro getRro()Return current value associated with the property corresponding toReportedRouteObject.getRro().- Returns:
- current value
-
getXro
public org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.exclude.route.object.Xro getXro()Return current value associated with the property corresponding toExcludeRouteObject.getXro().- Returns:
- current value
-
augmentation
public <E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<Path>> E$$ augmentation(Class<E$$> augmentationType) Return the specified augmentation, if it is present in this builder.- Type Parameters:
E$$- augmentation type- Parameters:
augmentationType- augmentation type class- Returns:
- Augmentation object from this builder, or
nullif not present - Throws:
NullPointerException- ifaugmentTypeisnull
-
withKey
Set the key value corresponding toPath.key()to the specified value.- Parameters:
key- desired value- Returns:
- this builder
-
setBandwidth
public PathBuilder setBandwidth(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.bandwidth.object.Bandwidth value) Set the property corresponding toBandwidthObject.getBandwidth()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
setClassType
public PathBuilder setClassType(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.classtype.object.ClassType value) Set the property corresponding toClasstypeObject.getClassType()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
setEro
public PathBuilder setEro(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.explicit.route.object.Ero value) Set the property corresponding toExplicitRouteObject.getEro()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
setIro
public PathBuilder setIro(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.include.route.object.Iro value) Set the property corresponding toIncludeRouteObject.getIro()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
setLspId
public PathBuilder setLspId(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.LspId value) Set the property corresponding toPath.getLspId()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
setLspa
public PathBuilder setLspa(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.lspa.object.Lspa value) Set the property corresponding toLspaObject.getLspa()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
setMetrics
public PathBuilder setMetrics(List<org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.lsp.attributes.Metrics> values) Set the property corresponding toLspAttributes.getMetrics()to the specified value.- Parameters:
values- desired value- Returns:
- this builder
-
setOf
public PathBuilder setOf(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.of.object.Of value) Set the property corresponding toOfObject.getOf()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
setReoptimizationBandwidth
public PathBuilder setReoptimizationBandwidth(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reoptimization.bandwidth.object.ReoptimizationBandwidth value) Set the property corresponding toReoptimizationBandwidthObject.getReoptimizationBandwidth()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
setRro
public PathBuilder setRro(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reported.route.object.Rro value) Set the property corresponding toReportedRouteObject.getRro()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
setXro
public PathBuilder setXro(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.exclude.route.object.Xro value) Set the property corresponding toExcludeRouteObject.getXro()to the specified value.- Parameters:
value- desired value- Returns:
- this builder
-
addAugmentation
public PathBuilder addAugmentation(org.opendaylight.yangtools.yang.binding.Augmentation<Path> augmentation) Add an augmentation to this builder's product.- Parameters:
augmentation- augmentation to be added- Returns:
- this builder
- Throws:
NullPointerException- ifaugmentationis null
-
removeAugmentation
public PathBuilder removeAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<Path>> augmentationType) Remove an augmentation from this builder's product. If this builder does not track such an augmentation type, this method does nothing.- Parameters:
augmentationType- augmentation type to be removed- Returns:
- this builder
-
build
A newPathinstance.- Returns:
- A new
Pathinstance.
-