Package jline.lang

Class NodeParam

  • All Implemented Interfaces:
    java.io.Serializable

    
    public class NodeParam
     implements Serializable
                        

    Base class for node parameters in queueing network models.

    NodeParam stores job class-dependent parameters that control the behavior of network nodes (stations). This includes routing weights, outbound links, memory-dependent parameters, and other node-specific configuration data.

    The parameters are organized by job class, allowing different classes to have different behaviors at the same node. This is essential for multi-class queueing networks where job classes may have different service requirements, routing patterns, or other characteristics.

    Subclasses extend this base functionality for specific node types such as caches, forks, joins, and service stations.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
      NodeParam() Constructs an empty NodeParam with initialized parameter maps.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      boolean isEmpty() Checks if this NodeParam contains no configuration data.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NodeParam

        NodeParam()
        Constructs an empty NodeParam with initialized parameter maps.
    • Method Detail

      • isEmpty

         boolean isEmpty()

        Checks if this NodeParam contains no configuration data.

        Returns:

        true if all parameter maps are null or empty, false otherwise