Class GroupStatsBuilder
java.lang.Object
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.multipart.reply.multipart.reply.body.multipart.reply.group._case.multipart.reply.group.GroupStatsBuilder
Class that builds
GroupStats
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:
GroupStats createGroupStats(int fooXyzzy, int barBaz) {
return new GroupStatsBuilder()
.setFoo(new FooBuilder().setXyzzy(fooXyzzy).build())
.setBar(new BarBuilder().setBaz(barBaz).build())
.build();
}
This pattern is supported by the immutable nature of GroupStats, 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.GroupStatsBuilder
(GroupStats base) Construct a builder initialized with state from specifiedGroupStats
. -
Method Summary
Modifier and TypeMethodDescriptionaddAugmentation
(org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats> augmentation) Add an augmentation to this builder's product.<E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats>>
E$$augmentation
(Class<E$$> augmentationType) Return the specified augmentation, if it is present in this builder.@NonNull GroupStats
build()
A newGroupStats
instance.Return current value associated with the property corresponding toGroupStats.getBucketStats()
.org.opendaylight.yangtools.yang.common.Uint64
Return current value associated with the property corresponding toGroupStats.getByteCount()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toGroupStats.getDurationNsec()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toGroupStats.getDurationSec()
.Return current value associated with the property corresponding toGroupStats.getGroupId()
.org.opendaylight.yangtools.yang.common.Uint64
Return current value associated with the property corresponding toGroupStats.getPacketCount()
.org.opendaylight.yangtools.yang.common.Uint32
Return current value associated with the property corresponding toGroupStats.getRefCount()
.removeAugmentation
(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats>> augmentationType) Remove an augmentation from this builder's product.setBucketStats
(List<BucketStats> values) Set the property corresponding toGroupStats.getBucketStats()
to the specified value.setByteCount
(org.opendaylight.yangtools.yang.common.Uint64 value) Set the property corresponding toGroupStats.getByteCount()
to the specified value.setDurationNsec
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toGroupStats.getDurationNsec()
to the specified value.setDurationSec
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toGroupStats.getDurationSec()
to the specified value.setGroupId
(GroupId value) Set the property corresponding toGroupStats.getGroupId()
to the specified value.setPacketCount
(org.opendaylight.yangtools.yang.common.Uint64 value) Set the property corresponding toGroupStats.getPacketCount()
to the specified value.setRefCount
(org.opendaylight.yangtools.yang.common.Uint32 value) Set the property corresponding toGroupStats.getRefCount()
to the specified value.
-
Constructor Details
-
GroupStatsBuilder
public GroupStatsBuilder()Construct an empty builder. -
GroupStatsBuilder
Construct a builder initialized with state from specifiedGroupStats
.- Parameters:
base
- GroupStats from which the builder should be initialized
-
-
Method Details
-
getBucketStats
Return current value associated with the property corresponding toGroupStats.getBucketStats()
.- Returns:
- current value
-
getByteCount
public org.opendaylight.yangtools.yang.common.Uint64 getByteCount()Return current value associated with the property corresponding toGroupStats.getByteCount()
.- Returns:
- current value
-
getDurationNsec
public org.opendaylight.yangtools.yang.common.Uint32 getDurationNsec()Return current value associated with the property corresponding toGroupStats.getDurationNsec()
.- Returns:
- current value
-
getDurationSec
public org.opendaylight.yangtools.yang.common.Uint32 getDurationSec()Return current value associated with the property corresponding toGroupStats.getDurationSec()
.- Returns:
- current value
-
getGroupId
Return current value associated with the property corresponding toGroupStats.getGroupId()
.- Returns:
- current value
-
getPacketCount
public org.opendaylight.yangtools.yang.common.Uint64 getPacketCount()Return current value associated with the property corresponding toGroupStats.getPacketCount()
.- Returns:
- current value
-
getRefCount
public org.opendaylight.yangtools.yang.common.Uint32 getRefCount()Return current value associated with the property corresponding toGroupStats.getRefCount()
.- Returns:
- current value
-
augmentation
public <E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats>> 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
-
setBucketStats
Set the property corresponding toGroupStats.getBucketStats()
to the specified value.- Parameters:
values
- desired value- Returns:
- this builder
-
setByteCount
Set the property corresponding toGroupStats.getByteCount()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setDurationNsec
Set the property corresponding toGroupStats.getDurationNsec()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setDurationSec
Set the property corresponding toGroupStats.getDurationSec()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setGroupId
Set the property corresponding toGroupStats.getGroupId()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setPacketCount
Set the property corresponding toGroupStats.getPacketCount()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
setRefCount
Set the property corresponding toGroupStats.getRefCount()
to the specified value.- Parameters:
value
- desired value- Returns:
- this builder
-
addAugmentation
public GroupStatsBuilder addAugmentation(org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats> 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 GroupStatsBuilder removeAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats>> 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 newGroupStats
instance.- Returns:
- A new
GroupStats
instance.
-