Interface AttributeFilters
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
BasicFastRerouteObject,BasicSessionAttributeObject,CommonFastRerouteObject,LegacyFastRerouteObject,Link1,Lspa,PcepCreateP2pTunnelInput,PcepUpdateTunnelInput,SessionAttributeObjectWithResourcesAffinities,TunnelAttributes,TunnelPcepLinkCfgAttributes
@Generated("mdsal-binding-generator") public interface AttributeFilters extends org.opendaylight.yangtools.yang.binding.DataObject
This class represents the following YANG schema fragment defined in module rsvp
grouping attribute-filters { leaf include-any { type attribute-filter; } leaf exclude-any { type attribute-filter; } leaf include-all { type attribute-filter; } }The schema path to identify an instance is rsvpattribute-filters
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AttributeFiltergetExcludeAny()Return excludeAny, ornullif it is not present.AttributeFiltergetIncludeAll()Return includeAll, ornullif it is not present.AttributeFiltergetIncludeAny()Return includeAny, ornullif it is not present.Class<? extends AttributeFilters>implementedInterface()default @NonNull AttributeFilterrequireExcludeAny()Return excludeAny, guaranteed to be non-null.default @NonNull AttributeFilterrequireIncludeAll()Return includeAll, guaranteed to be non-null.default @NonNull AttributeFilterrequireIncludeAny()Return includeAny, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends AttributeFilters> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getIncludeAny
AttributeFilter getIncludeAny()
Return includeAny, ornullif it is not present.- Returns:
AttributeFilterincludeAny, ornullif it is not present.
-
requireIncludeAny
default @NonNull AttributeFilter requireIncludeAny()
Return includeAny, guaranteed to be non-null.- Returns:
AttributeFilterincludeAny, guaranteed to be non-null.- Throws:
NoSuchElementException- if includeAny is not present
-
getExcludeAny
AttributeFilter getExcludeAny()
Return excludeAny, ornullif it is not present.- Returns:
AttributeFilterexcludeAny, ornullif it is not present.
-
requireExcludeAny
default @NonNull AttributeFilter requireExcludeAny()
Return excludeAny, guaranteed to be non-null.- Returns:
AttributeFilterexcludeAny, guaranteed to be non-null.- Throws:
NoSuchElementException- if excludeAny is not present
-
getIncludeAll
AttributeFilter getIncludeAll()
Return includeAll, ornullif it is not present.- Returns:
AttributeFilterincludeAll, ornullif it is not present.
-
requireIncludeAll
default @NonNull AttributeFilter requireIncludeAll()
Return includeAll, guaranteed to be non-null.- Returns:
AttributeFilterincludeAll, guaranteed to be non-null.- Throws:
NoSuchElementException- if includeAll is not present
-
-