Class UpdateMetersBatchInputBuilder
- java.lang.Object
-
- org.opendaylight.yang.gen.v1.urn.opendaylight.meters.service.rev160316.UpdateMetersBatchInputBuilder
-
- All Implemented Interfaces:
org.opendaylight.yangtools.concepts.Builder<UpdateMetersBatchInput>
,org.opendaylight.yangtools.concepts.CheckedBuilder<UpdateMetersBatchInput,IllegalArgumentException>
,org.opendaylight.yangtools.concepts.Mutable
,org.opendaylight.yangtools.concepts.MutationBehaviour<org.opendaylight.yangtools.concepts.Mutable>
public class UpdateMetersBatchInputBuilder extends Object implements org.opendaylight.yangtools.concepts.Builder<UpdateMetersBatchInput>
Class that buildsUpdateMetersBatchInputBuilder
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:
UpdateMetersBatchInputBuilder createTarget(int fooXyzzy, int barBaz) { return new UpdateMetersBatchInputBuilderBuilder() .setFoo(new FooBuilder().setXyzzy(fooXyzzy).build()) .setBar(new BarBuilder().setBaz(barBaz).build()) .build(); }
This pattern is supported by the immutable nature of UpdateMetersBatchInputBuilder, 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 oportunities, 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:
UpdateMetersBatchInputBuilder
,Builder
-
-
Constructor Summary
Constructors Constructor Description UpdateMetersBatchInputBuilder()
UpdateMetersBatchInputBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeContextRef arg)
UpdateMetersBatchInputBuilder(UpdateMetersBatchInput base)
UpdateMetersBatchInputBuilder(BarrierSuffix arg)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateMetersBatchInputBuilder
addAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<UpdateMetersBatchInput>> augmentationType, org.opendaylight.yangtools.yang.binding.Augmentation<UpdateMetersBatchInput> augmentationValue)
<E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<UpdateMetersBatchInput>>
E$$augmentation(Class<E$$> augmentationType)
UpdateMetersBatchInput
build()
void
fieldsFrom(org.opendaylight.yangtools.yang.binding.DataObject arg)
Set fields from given grouping argument.List<BatchUpdateMeters>
getBatchUpdateMeters()
org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef
getNode()
Boolean
isBarrierAfter()
UpdateMetersBatchInputBuilder
removeAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<UpdateMetersBatchInput>> augmentationType)
UpdateMetersBatchInputBuilder
setBarrierAfter(Boolean value)
UpdateMetersBatchInputBuilder
setBatchUpdateMeters(List<BatchUpdateMeters> values)
UpdateMetersBatchInputBuilder
setNode(org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef value)
-
-
-
Constructor Detail
-
UpdateMetersBatchInputBuilder
public UpdateMetersBatchInputBuilder()
-
UpdateMetersBatchInputBuilder
public UpdateMetersBatchInputBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeContextRef arg)
-
UpdateMetersBatchInputBuilder
public UpdateMetersBatchInputBuilder(BarrierSuffix arg)
-
UpdateMetersBatchInputBuilder
public UpdateMetersBatchInputBuilder(UpdateMetersBatchInput base)
-
-
Method Detail
-
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:- org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeContextRef
- org.opendaylight.yang.gen.v1.urn.opendaylight.service.barrier.common.rev160315.BarrierSuffix
- Parameters:
arg
- grouping object- Throws:
IllegalArgumentException
- if given argument is none of valid types
-
getBatchUpdateMeters
public List<BatchUpdateMeters> getBatchUpdateMeters()
-
getNode
public org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef getNode()
-
isBarrierAfter
public Boolean isBarrierAfter()
-
augmentation
public <E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<UpdateMetersBatchInput>> E$$ augmentation(Class<E$$> augmentationType)
-
setBatchUpdateMeters
public UpdateMetersBatchInputBuilder setBatchUpdateMeters(List<BatchUpdateMeters> values)
-
setNode
public UpdateMetersBatchInputBuilder setNode(org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef value)
-
setBarrierAfter
public UpdateMetersBatchInputBuilder setBarrierAfter(Boolean value)
-
addAugmentation
public UpdateMetersBatchInputBuilder addAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<UpdateMetersBatchInput>> augmentationType, org.opendaylight.yangtools.yang.binding.Augmentation<UpdateMetersBatchInput> augmentationValue)
-
removeAugmentation
public UpdateMetersBatchInputBuilder removeAugmentation(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<UpdateMetersBatchInput>> augmentationType)
-
build
public UpdateMetersBatchInput build()
- Specified by:
build
in interfaceorg.opendaylight.yangtools.concepts.Builder<UpdateMetersBatchInput>
- Specified by:
build
in interfaceorg.opendaylight.yangtools.concepts.CheckedBuilder<UpdateMetersBatchInput,IllegalArgumentException>
-
-