Interface MatchEntryFieldsGrouping
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
MatchEntry
@Generated("mdsal-binding-generator")
public interface MatchEntryFieldsGrouping
extends org.opendaylight.yangtools.yang.binding.DataObject
This class represents the following YANG schema fragment defined in module openflow-extensible-match
grouping match-entry-fields-grouping {
leaf oxm-class {
type identityref {
base oxm-class-base;
}
}
leaf oxm-match-field {
type identityref {
base match-field;
}
}
leaf has-mask {
type boolean;
}
}
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QNameYANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptionReturn hasMask, ornullif it is not present.Return oxmClass, ornullif it is not present.Return oxmMatchField, ornullif it is not present.Class<? extends MatchEntryFieldsGrouping>default @NonNull BooleanReturn hasMask, guaranteed to be non-null.default @NonNull OxmClassBaseReturn oxmClass, guaranteed to be non-null.default @NonNull MatchFieldReturn oxmMatchField, guaranteed to be non-null.
-
Field Details
-
QNAME
static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAMEYANG identifier of the statement represented by this class.
-
-
Method Details
-
implementedInterface
Class<? extends MatchEntryFieldsGrouping> implementedInterface()- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getOxmClass
OxmClassBase getOxmClass()Return oxmClass, ornullif it is not present.- Returns:
OxmClassBaseoxmClass, ornullif it is not present.
-
requireOxmClass
Return oxmClass, guaranteed to be non-null.- Returns:
OxmClassBaseoxmClass, guaranteed to be non-null.- Throws:
NoSuchElementException- if oxmClass is not present
-
getOxmMatchField
MatchField getOxmMatchField()Return oxmMatchField, ornullif it is not present.- Returns:
MatchFieldoxmMatchField, ornullif it is not present.
-
requireOxmMatchField
Return oxmMatchField, guaranteed to be non-null.- Returns:
MatchFieldoxmMatchField, guaranteed to be non-null.- Throws:
NoSuchElementException- if oxmMatchField is not present
-
getHasMask
Boolean getHasMask()Return hasMask, ornullif it is not present.- Returns:
BooleanhasMask, ornullif it is not present.
-
requireHasMask
Return hasMask, guaranteed to be non-null.- Returns:
BooleanhasMask, guaranteed to be non-null.- Throws:
NoSuchElementException- if hasMask is not present
-