Interface Bucket

  • All Superinterfaces:
    ActionList, org.opendaylight.yangtools.yang.binding.Augmentable<Bucket>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<Buckets>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<BucketKey>

    @Generated("mdsal-binding-generator")
    public interface Bucket
    extends org.opendaylight.yangtools.yang.binding.ChildOf<Buckets>, org.opendaylight.yangtools.yang.binding.Augmentable<Bucket>, ActionList, org.opendaylight.yangtools.yang.binding.Identifiable<BucketKey>

    This class represents the following YANG schema fragment defined in module opendaylight-group-types

     list bucket {
       key bucket-id;
       leaf bucket-id {
         type bucket-id;
       }
       leaf weight {
         type uint16;
       }
       leaf watch_port {
         type uint32;
       }
       leaf watch_group {
         type uint32;
       }
       uses action:action-list;
     }
     
    The schema path to identify an instance is opendaylight-group-types/group/buckets/bucket

    To create instances of this class use BucketBuilder.

    See Also:
    BucketBuilder, BucketKey
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default Class<Bucket> implementedInterface()
        Specified by:
        implementedInterface in interface ActionList
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • bindingHashCode

        static int bindingHashCode​(@NonNull Bucket obj)
        Default implementation of Object.hashCode() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent hashing results across all implementations.
        Parameters:
        obj - Object for which to generate hashCode() result.
        Returns:
        Hash code value of data modeled by this interface.
        Throws:
        NullPointerException - if obj is null
      • bindingEquals

        static boolean bindingEquals​(@NonNull Bucket thisObj,
                                     Object obj)
        Default implementation of Object.equals(Object) contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent equality results across all implementations.
        Parameters:
        thisObj - Object acting as the receiver of equals invocation
        obj - Object acting as argument to equals invocation
        Returns:
        True if thisObj and obj are considered equal
        Throws:
        NullPointerException - if thisObj is null
      • bindingToString

        static String bindingToString​(@NonNull Bucket obj)
        Default implementation of Object.toString() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent string representations across all implementations.
        Parameters:
        obj - Object for which to generate toString() result.
        Returns:
        String value of data modeled by this interface.
        Throws:
        NullPointerException - if obj is null
      • getBucketId

        BucketId getBucketId()
        Return bucketId, or null if it is not present.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.BucketId bucketId, or null if it is not present.
      • getWeight

        org.opendaylight.yangtools.yang.common.Uint16 getWeight()
        Return weight, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 weight, or null if it is not present.
      • getWatchPort

        org.opendaylight.yangtools.yang.common.Uint32 getWatchPort()
        Return watchPort, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 watchPort, or null if it is not present.
      • getWatchGroup

        org.opendaylight.yangtools.yang.common.Uint32 getWatchGroup()
        Return watchGroup, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 watchGroup, or null if it is not present.
      • key

        BucketKey key()
        Specified by:
        key in interface org.opendaylight.yangtools.yang.binding.Identifiable<BucketKey>