Class EdgeAttributesBuilder
java.lang.Object
org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.graph.rev220720.edge.EdgeAttributesBuilder
Class that builds
EdgeAttributes
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:
EdgeAttributes createEdgeAttributes(int fooXyzzy, int barBaz) {
return new EdgeAttributesBuilder()
.setFoo(new FooBuilder().setXyzzy(fooXyzzy).build())
.setBar(new BarBuilder().setBaz(barBaz).build())
.build();
}
This pattern is supported by the immutable nature of EdgeAttributes, 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
ConstructorDescriptionConstruct an empty builder.Construct a builder initialized with state from specifiedEdgeAttributes
.Construct a new builder initialized from specifiedEdgeAttributes
. -
Method Summary
Modifier and TypeMethodDescriptionaddAugmentation
(org.opendaylight.yangtools.yang.binding.Augmentation<EdgeAttributes> augmentation) Add an augmentation to this builder's product.<E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<EdgeAttributes>>
E$$augmentation
(Class<E$$> augmentationType) Return the specified augmentation, if it is present in this builder.@NonNull EdgeAttributes
build()
A newEdgeAttributes
instance.static @NonNull EdgeAttributes
empty()
Get empty instance of EdgeAttributes.void
fieldsFrom
(org.opendaylight.yangtools.yang.binding.DataObject arg) Set fields from given grouping argument.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toEdgeAttributes.getAdjSid()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toEdgeAttributes.getAdjSid6()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toEdgeAttributes.getAdminGroup()
.Return current value associated with the property corresponding toEdgeAttributes.getAvailableBandwidth()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toEdgeAttributes.getBackupAdjSid()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toEdgeAttributes.getBackupAdjSid6()
.getDelay()
Return current value associated with the property corresponding toEdgeAttributes.getDelay()
.Return current value associated with the property corresponding toEdgeAttributes.getJitter()
.org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address
Return current value associated with the property corresponding toEdgeAttributes.getLocalAddress()
.org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address
Return current value associated with the property corresponding toEdgeAttributes.getLocalAddress6()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toEdgeAttributes.getLocalIdentifier()
.getLoss()
Return current value associated with the property corresponding toEdgeAttributes.getLoss()
.Return current value associated with the property corresponding toEdgeAttributes.getMaxLinkBandwidth()
.Return current value associated with the property corresponding toEdgeAttributes.getMaxResvLinkBandwidth()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toEdgeAttributes.getMetric()
.Return current value associated with the property corresponding toEdgeAttributes.getMinMaxDelay()
.org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address
Return current value associated with the property corresponding toEdgeAttributes.getRemoteAddress()
.org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address
Return current value associated with the property corresponding toEdgeAttributes.getRemoteAddress6()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toEdgeAttributes.getRemoteIdentifier()
.Return current value associated with the property corresponding toEdgeAttributes.getResidualBandwidth()
.Set<org.opendaylight.yangtools.yang.common.Uint32>
getSrlgs()
Return current value associated with the property corresponding toEdgeAttributes.getSrlgs()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toEdgeAttributes.getTeMetric()
.Return current value associated with the property corresponding toEdgeAttributes.getUnreservedBandwidth()
.Return current value associated with the property corresponding toEdgeAttributes.getUtilizedBandwidth()
.removeAugmentation
(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<EdgeAttributes>> augmentationType) Remove an augmentation from this builder's product.setAdjSid
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getAdjSid()
to the specified value.setAdjSid6
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getAdjSid6()
to the specified value.setAdminGroup
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getAdminGroup()
to the specified value.Set the property corresponding toEdgeAttributes.getAvailableBandwidth()
to the specified value.setBackupAdjSid
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getBackupAdjSid()
to the specified value.setBackupAdjSid6
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getBackupAdjSid6()
to the specified value.Set the property corresponding toEdgeAttributes.getDelay()
to the specified value.Set the property corresponding toEdgeAttributes.getJitter()
to the specified value.setLocalAddress
(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address value) Set the property corresponding toEdgeAttributes.getLocalAddress()
to the specified value.setLocalAddress6
(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address value) Set the property corresponding toEdgeAttributes.getLocalAddress6()
to the specified value.setLocalIdentifier
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getLocalIdentifier()
to the specified value.Set the property corresponding toEdgeAttributes.getLoss()
to the specified value.Set the property corresponding toEdgeAttributes.getMaxLinkBandwidth()
to the specified value.Set the property corresponding toEdgeAttributes.getMaxResvLinkBandwidth()
to the specified value.setMetric
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getMetric()
to the specified value.setMinMaxDelay
(MinMaxDelay value) Set the property corresponding toEdgeAttributes.getMinMaxDelay()
to the specified value.setRemoteAddress
(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address value) Set the property corresponding toEdgeAttributes.getRemoteAddress()
to the specified value.setRemoteAddress6
(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address value) Set the property corresponding toEdgeAttributes.getRemoteAddress6()
to the specified value.setRemoteIdentifier
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getRemoteIdentifier()
to the specified value.Set the property corresponding toEdgeAttributes.getResidualBandwidth()
to the specified value.Set the property corresponding toEdgeAttributes.getSrlgs()
to the specified value.setTeMetric
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getTeMetric()
to the specified value.Set the property corresponding toEdgeAttributes.getUnreservedBandwidth()
to the specified value.Set the property corresponding toEdgeAttributes.getUtilizedBandwidth()
to the specified value.
-
Constructor Details
-
EdgeAttributesBuilder
public EdgeAttributesBuilder()Construct an empty builder. -
EdgeAttributesBuilder
Construct a new builder initialized from specifiedEdgeAttributes
.- Parameters:
arg
- org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.graph.rev220720.EdgeAttributes from which the builder should be initialized
-
EdgeAttributesBuilder
Construct a builder initialized with state from specifiedEdgeAttributes
.- Parameters:
base
- EdgeAttributes 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:- Parameters:
arg
- grouping object- Throws:
IllegalArgumentException
- if given argument is none of valid types or has property with incompatible value
-
empty
Get empty instance of EdgeAttributes.- Returns:
- An empty
EdgeAttributes
-
getAdjSid
public org.opendaylight.yangtools.yang.common.Uint32 getAdjSid()Return current value associated with the property corresponding toEdgeAttributes.getAdjSid()
.- Returns:
- current value
-
getAdjSid6
public org.opendaylight.yangtools.yang.common.Uint32 getAdjSid6()Return current value associated with the property corresponding toEdgeAttributes.getAdjSid6()
.- Returns:
- current value
-
getAdminGroup
public org.opendaylight.yangtools.yang.common.Uint32 getAdminGroup()Return current value associated with the property corresponding toEdgeAttributes.getAdminGroup()
.- Returns:
- current value
-
getAvailableBandwidth
Return current value associated with the property corresponding toEdgeAttributes.getAvailableBandwidth()
.- Returns:
- current value
-
getBackupAdjSid
public org.opendaylight.yangtools.yang.common.Uint32 getBackupAdjSid()Return current value associated with the property corresponding toEdgeAttributes.getBackupAdjSid()
.- Returns:
- current value
-
getBackupAdjSid6
public org.opendaylight.yangtools.yang.common.Uint32 getBackupAdjSid6()Return current value associated with the property corresponding toEdgeAttributes.getBackupAdjSid6()
.- Returns:
- current value
-
getDelay
Return current value associated with the property corresponding toEdgeAttributes.getDelay()
.- Returns:
- current value
-
getJitter
Return current value associated with the property corresponding toEdgeAttributes.getJitter()
.- Returns:
- current value
-
getLocalAddress
public org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address getLocalAddress()Return current value associated with the property corresponding toEdgeAttributes.getLocalAddress()
.- Returns:
- current value
-
getLocalAddress6
public org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address getLocalAddress6()Return current value associated with the property corresponding toEdgeAttributes.getLocalAddress6()
.- Returns:
- current value
-
getLocalIdentifier
public org.opendaylight.yangtools.yang.common.Uint32 getLocalIdentifier()Return current value associated with the property corresponding toEdgeAttributes.getLocalIdentifier()
.- Returns:
- current value
-
getLoss
Return current value associated with the property corresponding toEdgeAttributes.getLoss()
.- Returns:
- current value
-
getMaxLinkBandwidth
Return current value associated with the property corresponding toEdgeAttributes.getMaxLinkBandwidth()
.- Returns:
- current value
-
getMaxResvLinkBandwidth
Return current value associated with the property corresponding toEdgeAttributes.getMaxResvLinkBandwidth()
.- Returns:
- current value
-
getMetric
public org.opendaylight.yangtools.yang.common.Uint32 getMetric()Return current value associated with the property corresponding toEdgeAttributes.getMetric()
.- Returns:
- current value
-
getMinMaxDelay
Return current value associated with the property corresponding toEdgeAttributes.getMinMaxDelay()
.- Returns:
- current value
-
getRemoteAddress
public org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address getRemoteAddress()Return current value associated with the property corresponding toEdgeAttributes.getRemoteAddress()
.- Returns:
- current value
-
getRemoteAddress6
public org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address getRemoteAddress6()Return current value associated with the property corresponding toEdgeAttributes.getRemoteAddress6()
.- Returns:
- current value
-
getRemoteIdentifier
public org.opendaylight.yangtools.yang.common.Uint32 getRemoteIdentifier()Return current value associated with the property corresponding toEdgeAttributes.getRemoteIdentifier()
.- Returns:
- current value
-
getResidualBandwidth
Return current value associated with the property corresponding toEdgeAttributes.getResidualBandwidth()
.- Returns:
- current value
-
getSrlgs
Return current value associated with the property corresponding toEdgeAttributes.getSrlgs()
.- Returns:
- current value
-
getTeMetric
public org.opendaylight.yangtools.yang.common.Uint32 getTeMetric()Return current value associated with the property corresponding toEdgeAttributes.getTeMetric()
.- Returns:
- current value
-
getUnreservedBandwidth
Return current value associated with the property corresponding toEdgeAttributes.getUnreservedBandwidth()
.- Returns:
- current value
-
getUtilizedBandwidth
Return current value associated with the property corresponding toEdgeAttributes.getUtilizedBandwidth()
.- Returns:
- current value
-
augmentation
public <E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<EdgeAttributes>> 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
null
if not present - Throws:
NullPointerException
- ifaugmentType
isnull
-
setAdjSid
Set the property corresponding toEdgeAttributes.getAdjSid()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setAdjSid6
Set the property corresponding toEdgeAttributes.getAdjSid6()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setAdminGroup
Set the property corresponding toEdgeAttributes.getAdminGroup()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setAvailableBandwidth
Set the property corresponding toEdgeAttributes.getAvailableBandwidth()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setBackupAdjSid
Set the property corresponding toEdgeAttributes.getBackupAdjSid()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setBackupAdjSid6
Set the property corresponding toEdgeAttributes.getBackupAdjSid6()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setDelay
Set the property corresponding toEdgeAttributes.getDelay()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setJitter
Set the property corresponding toEdgeAttributes.getJitter()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setLocalAddress
public EdgeAttributesBuilder setLocalAddress(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address value) Set the property corresponding toEdgeAttributes.getLocalAddress()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setLocalAddress6
public EdgeAttributesBuilder setLocalAddress6(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address value) Set the property corresponding toEdgeAttributes.getLocalAddress6()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setLocalIdentifier
public EdgeAttributesBuilder setLocalIdentifier(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getLocalIdentifier()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setLoss
Set the property corresponding toEdgeAttributes.getLoss()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setMaxLinkBandwidth
Set the property corresponding toEdgeAttributes.getMaxLinkBandwidth()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setMaxResvLinkBandwidth
Set the property corresponding toEdgeAttributes.getMaxResvLinkBandwidth()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setMetric
Set the property corresponding toEdgeAttributes.getMetric()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setMinMaxDelay
Set the property corresponding toEdgeAttributes.getMinMaxDelay()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setRemoteAddress
public EdgeAttributesBuilder setRemoteAddress(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address value) Set the property corresponding toEdgeAttributes.getRemoteAddress()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setRemoteAddress6
public EdgeAttributesBuilder setRemoteAddress6(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address value) Set the property corresponding toEdgeAttributes.getRemoteAddress6()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setRemoteIdentifier
public EdgeAttributesBuilder setRemoteIdentifier(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toEdgeAttributes.getRemoteIdentifier()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setResidualBandwidth
Set the property corresponding toEdgeAttributes.getResidualBandwidth()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setSrlgs
Set the property corresponding toEdgeAttributes.getSrlgs()
to the specified value.- Parameters:
values
- desired value- Returns:
- this builder
-
setTeMetric
Set the property corresponding toEdgeAttributes.getTeMetric()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setUnreservedBandwidth
Set the property corresponding toEdgeAttributes.getUnreservedBandwidth()
to the specified value.- Parameters:
values
- desired value- Returns:
- this builder
-
setUtilizedBandwidth
Set the property corresponding toEdgeAttributes.getUtilizedBandwidth()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
addAugmentation
public EdgeAttributesBuilder addAugmentation(org.opendaylight.yangtools.yang.binding.Augmentation<EdgeAttributes> augmentation) Add an augmentation to this builder's product.- Parameters:
augmentation
- augmentation to be added- Returns:
- this builder
- Throws:
NullPointerException
- ifaugmentation
is null
-
removeAugmentation
public EdgeAttributesBuilder removeAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<EdgeAttributes>> 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 newEdgeAttributes
instance.- Returns:
- A new
EdgeAttributes
instance.
-