Interface ProcTime
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<ProcTime>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<ProcTimeObject>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject,Object,ObjectHeader
public interface ProcTime extends org.opendaylight.yangtools.yang.binding.ChildOf<ProcTimeObject>, org.opendaylight.yangtools.yang.binding.Augmentable<ProcTime>, Object
This class represents the following YANG schema fragment defined in module pcep-types
container proc-time { uses object; leaf estimated { type boolean; } leaf current-proc-time { type uint32; } leaf min-proc-time { type uint32; } leaf max-proc-time { type uint32; } leaf average-proc-time { type uint32; } leaf variance-proc-time { type uint32; } }The schema path to identify an instance is pcep-types/proc-time-object/proc-timeTo create instances of this class use
ProcTimeBuilder.- See Also:
ProcTimeBuilder
-
-
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 @Nullable org.opendaylight.yangtools.yang.common.Uint32getAverageProcTime()The average processing time in milliseconds@Nullable org.opendaylight.yangtools.yang.common.Uint32getCurrentProcTime()Indicates, in milliseconds, the processing time for the path computation of interest characterized in the corresponding PCMonReq message.@Nullable org.opendaylight.yangtools.yang.common.Uint32getMaxProcTime()The maximum processing time in milliseconds@Nullable org.opendaylight.yangtools.yang.common.Uint32getMinProcTime()The minimum processing time in milliseconds@Nullable org.opendaylight.yangtools.yang.common.Uint32getVarianceProcTime()The variance of processing times in millisecondsdefault Class<ProcTime>implementedInterface()@Nullable BooleanisEstimated()Indicates that the reported metric value is based on estimated processing time as opposed to actual computations.-
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ObjectHeader
isIgnore, isProcessingRule
-
-
-
-
Method Detail
-
implementedInterface
default Class<ProcTime> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject- Specified by:
implementedInterfacein interfaceObject- Specified by:
implementedInterfacein interfaceObjectHeader
-
isEstimated
@Nullable Boolean isEstimated()
Indicates that the reported metric value is based on estimated processing time as opposed to actual computations.- Returns:
java.lang.Booleanestimated, ornullif not present
-
getCurrentProcTime
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getCurrentProcTime()
Indicates, in milliseconds, the processing time for the path computation of interest characterized in the corresponding PCMonReq message.- Returns:
org.opendaylight.yangtools.yang.common.Uint32currentProcTime, ornullif not present
-
getMinProcTime
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getMinProcTime()
The minimum processing time in milliseconds- Returns:
org.opendaylight.yangtools.yang.common.Uint32minProcTime, ornullif not present
-
getMaxProcTime
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getMaxProcTime()
The maximum processing time in milliseconds- Returns:
org.opendaylight.yangtools.yang.common.Uint32maxProcTime, ornullif not present
-
getAverageProcTime
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getAverageProcTime()
The average processing time in milliseconds- Returns:
org.opendaylight.yangtools.yang.common.Uint32averageProcTime, ornullif not present
-
getVarianceProcTime
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getVarianceProcTime()
The variance of processing times in milliseconds- Returns:
org.opendaylight.yangtools.yang.common.Uint32varianceProcTime, ornullif not present
-
-