Interface BucketGrouping
- All Superinterfaces:
ActionsGrouping,org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>,org.opendaylight.yangtools.binding.BindingObject,org.opendaylight.yangtools.binding.DataContainer,org.opendaylight.yangtools.binding.Grouping
- All Known Subinterfaces:
BucketsList
@Generated("mdsal-binding-generator")
public interface BucketGrouping
extends org.opendaylight.yangtools.binding.Grouping, ActionsGrouping
Bucket for use in groups.
This class represents the following YANG schema fragment defined in module openflow-protocol
grouping bucket-grouping {
leaf weight {
type uint16;
}
leaf watch-port {
type oft:port-number;
}
leaf watch-group {
type uint32;
}
uses ofaction:actions-grouping;
}
-
Method Summary
Modifier and TypeMethodDescriptionorg.opendaylight.yangtools.yang.common.Uint32Return watchGroup, ornullif it is not present.Return watchPort, ornullif it is not present.org.opendaylight.yangtools.yang.common.Uint16Return weight, ornullif it is not present.default @NonNull org.opendaylight.yangtools.yang.common.Uint32Return watchGroup, guaranteed to be non-null.default @NonNull PortNumberReturn watchPort, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint16Return weight, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.ActionsGrouping
getAction, nonnullActionMethods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Method Details
-
getWeight
org.opendaylight.yangtools.yang.common.Uint16 getWeight()Return weight, ornullif it is not present.Relative weight of bucket. Only defined for select groups.- Returns:
Uint16weight, ornullif it is not present.
-
requireWeight
default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireWeight()Return weight, guaranteed to be non-null.Relative weight of bucket. Only defined for select groups.- Returns:
Uint16weight, guaranteed to be non-null.- Throws:
NoSuchElementException- if weight is not present
-
getWatchPort
PortNumber getWatchPort()Return watchPort, ornullif it is not present.Port whose state affects whether this bucket is live. Only required for fast failover groups.- Returns:
PortNumberwatchPort, ornullif it is not present.
-
requireWatchPort
Return watchPort, guaranteed to be non-null.Port whose state affects whether this bucket is live. Only required for fast failover groups.- Returns:
PortNumberwatchPort, guaranteed to be non-null.- Throws:
NoSuchElementException- if watchPort is not present
-
getWatchGroup
org.opendaylight.yangtools.yang.common.Uint32 getWatchGroup()Return watchGroup, ornullif it is not present.Group whose state affects whether this bucket is live. Only required for fast failover groups.- Returns:
Uint32watchGroup, ornullif it is not present.
-
requireWatchGroup
default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireWatchGroup()Return watchGroup, guaranteed to be non-null.Group whose state affects whether this bucket is live. Only required for fast failover groups.- Returns:
Uint32watchGroup, guaranteed to be non-null.- Throws:
NoSuchElementException- if watchGroup is not present
-