Interface Gc

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<Gc>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<GcObject>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, Object, ObjectHeader

    public interface Gc
    extends org.opendaylight.yangtools.yang.binding.ChildOf<GcObject>, org.opendaylight.yangtools.yang.binding.Augmentable<Gc>, Object

    This class represents the following YANG schema fragment defined in module pcep-types

     container gc {
       uses object;
       leaf max-hop {
         type uint8;
       }
       leaf max-utilization {
         type uint8 {
           range 0..100;
         }
         units percent;
       }
       leaf min-utilization {
         type uint8 {
           range 0..100;
         }
         units percent;
       }
       leaf over-booking-factor {
         type uint8 {
           range 0..100;
         }
         units percent;
       }
       container tlvs {
         uses vendor-information-tlvs;
       }
     }
     
    The schema path to identify an instance is pcep-types/gc-object/gc

    To create instances of this class use GcBuilder.

    See Also:
    GcBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<Gc> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
        Specified by:
        implementedInterface in interface Object
        Specified by:
        implementedInterface in interface ObjectHeader
      • getMaxHop

        @Nullable org.opendaylight.yangtools.yang.common.Uint8 getMaxHop()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint8 maxHop, or null if not present
      • getMaxUtilization

        @Nullable org.opendaylight.yangtools.yang.common.Uint8 getMaxUtilization()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint8 maxUtilization, or null if not present
      • getMinUtilization

        @Nullable org.opendaylight.yangtools.yang.common.Uint8 getMinUtilization()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint8 minUtilization, or null if not present
      • getOverBookingFactor

        @Nullable org.opendaylight.yangtools.yang.common.Uint8 getOverBookingFactor()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint8 overBookingFactor, or null if not present
      • getTlvs

        @Nullable Tlvs getTlvs()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.gc.object.gc.Tlvs tlvs, or null if not present