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

    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
      • isInterArea

        @Nullable Boolean isInterArea()
        Returns:
        java.lang.Boolean interArea, or null if not present
      • getRangeSize

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

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

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