Interface RangeTlv

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    SrRange

    @Generated("mdsal-binding-generator")
    public interface RangeTlv
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module bgp-segment-routing

     grouping range-tlv {
       leaf inter-area {
         type boolean;
       }
       leaf range-size {
         type uint16;
       }
       list sub-tlvs {
         uses range-sub-tlvs;
       }
     }
     
    The schema path to identify an instance is bgp-segment-routing/range-tlv
    • Field Detail

      • QNAME

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

      • implementedInterface

        Class<? extends RangeTlv> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getInterArea

        Boolean getInterArea()
        Return interArea, or null if it is not present.
        Returns:
        java.lang.Boolean interArea, or null if it is not present.
      • isInterArea

        @Deprecated(forRemoval=true)
        default Boolean isInterArea()
        Deprecated, for removal: This API element is subject to removal in a future version.
      • getRangeSize

        org.opendaylight.yangtools.yang.common.Uint16 getRangeSize()
        Return rangeSize, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 rangeSize, or null if it is not present.
      • getSubTlvs

        @Nullable List<SubTlvs> getSubTlvs()
        Return subTlvs, or null if it is not present.
        Returns:
        java.util.List subTlvs, or null if it is not present.
      • nonnullSubTlvs

        default @NonNull List<SubTlvs> nonnullSubTlvs()
        Return subTlvs, or an empty list if it is not present.
        Returns:
        java.util.List subTlvs, or an empty list if it is not present.