Class GroupStatsBuilder

  • All Implemented Interfaces:
    org.opendaylight.yangtools.concepts.Builder<GroupStats>, org.opendaylight.yangtools.concepts.CheckedBuilder<GroupStats,​IllegalArgumentException>, org.opendaylight.yangtools.concepts.Mutable, org.opendaylight.yangtools.concepts.MutationBehaviour<org.opendaylight.yangtools.concepts.Mutable>

    public class GroupStatsBuilder
    extends Object
    implements org.opendaylight.yangtools.concepts.Builder<GroupStats>
    Class that builds GroupStatsBuilder 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:

       
         GroupStatsBuilder createTarget(int fooXyzzy, int barBaz) {
             return new GroupStatsBuilderBuilder()
                 .setFoo(new FooBuilder().setXyzzy(fooXyzzy).build())
                 .setBar(new BarBuilder().setBaz(barBaz).build())
                 .build();
         }
       
     

    This pattern is supported by the immutable nature of GroupStatsBuilder, 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:
    GroupStatsBuilder, Builder
    • Constructor Detail

      • GroupStatsBuilder

        public GroupStatsBuilder()
      • GroupStatsBuilder

        public GroupStatsBuilder​(GroupStats base)
    • Method Detail

      • getByteCount

        public org.opendaylight.yangtools.yang.common.Uint64 getByteCount()
      • getDurationNsec

        public org.opendaylight.yangtools.yang.common.Uint32 getDurationNsec()
      • getDurationSec

        public org.opendaylight.yangtools.yang.common.Uint32 getDurationSec()
      • getGroupId

        public GroupId getGroupId()
      • getPacketCount

        public org.opendaylight.yangtools.yang.common.Uint64 getPacketCount()
      • getRefCount

        public org.opendaylight.yangtools.yang.common.Uint32 getRefCount()
      • augmentation

        public <E$$ extends org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats>> E$$ augmentation​(Class<E$$> augmentationType)
      • setByteCount

        public GroupStatsBuilder setByteCount​(org.opendaylight.yangtools.yang.common.Uint64 value)
      • setByteCount

        @Deprecated(forRemoval=true)
        public GroupStatsBuilder setByteCount​(BigInteger value)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Use {#link setByteCount(Uint64)} instead.
        Utility migration setter.
        Parameters:
        value - field value in legacy type
        Returns:
        this builder
      • setDurationNsec

        public GroupStatsBuilder setDurationNsec​(org.opendaylight.yangtools.yang.common.Uint32 value)
      • setDurationNsec

        @Deprecated(forRemoval=true)
        public GroupStatsBuilder setDurationNsec​(Long value)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Use {#link setDurationNsec(Uint32)} instead.
        Utility migration setter.
        Parameters:
        value - field value in legacy type
        Returns:
        this builder
      • setDurationSec

        public GroupStatsBuilder setDurationSec​(org.opendaylight.yangtools.yang.common.Uint32 value)
      • setDurationSec

        @Deprecated(forRemoval=true)
        public GroupStatsBuilder setDurationSec​(Long value)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Use {#link setDurationSec(Uint32)} instead.
        Utility migration setter.
        Parameters:
        value - field value in legacy type
        Returns:
        this builder
      • setPacketCount

        public GroupStatsBuilder setPacketCount​(org.opendaylight.yangtools.yang.common.Uint64 value)
      • setPacketCount

        @Deprecated(forRemoval=true)
        public GroupStatsBuilder setPacketCount​(BigInteger value)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Use {#link setPacketCount(Uint64)} instead.
        Utility migration setter.
        Parameters:
        value - field value in legacy type
        Returns:
        this builder
      • setRefCount

        public GroupStatsBuilder setRefCount​(org.opendaylight.yangtools.yang.common.Uint32 value)
      • setRefCount

        @Deprecated(forRemoval=true)
        public GroupStatsBuilder setRefCount​(Long value)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Use {#link setRefCount(Uint32)} instead.
        Utility migration setter.
        Parameters:
        value - field value in legacy type
        Returns:
        this builder
      • addAugmentation

        public GroupStatsBuilder addAugmentation​(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats>> augmentationType,
                                                 org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats> augmentationValue)
      • removeAugmentation

        public GroupStatsBuilder removeAugmentation​(Class<? extends org.opendaylight.yangtools.yang.binding.Augmentation<GroupStats>> augmentationType)