Uses of Enum
jline.lang.constant.BalkingStrategy
Packages that use BalkingStrategy
Package
Description
Abstractions to declare basic elements of a model.
This package contains constants used in the definition of queueing characteristics
This package contains the classes used the specify Network objects
-
Uses of BalkingStrategy in jline.lang
Fields in jline.lang with type parameters of type BalkingStrategyMethods in jline.lang that return BalkingStrategyModifier and TypeMethodDescriptionJobClass.getBalkingStrategy()Gets the global balking strategy for this job class.Methods in jline.lang with parameters of type BalkingStrategyModifier and TypeMethodDescriptionvoidJobClass.setBalking(BalkingStrategy strategy, int minJobs, double probability) Sets the global balking configuration using a single threshold.voidJobClass.setBalking(BalkingStrategy strategy, List<BalkingThreshold> thresholds) Sets the global balking configuration for this job class using queue-length thresholds. -
Uses of BalkingStrategy in jline.lang.constant
Methods in jline.lang.constant that return BalkingStrategyModifier and TypeMethodDescriptionstatic BalkingStrategyBalkingStrategy.fromID(int id) Convert numeric ID to BalkingStrategy enum value.static BalkingStrategyReturns the enum constant of this type with the specified name.static BalkingStrategy[]BalkingStrategy.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in jline.lang.constant with parameters of type BalkingStrategyModifier and TypeMethodDescriptionstatic StringBalkingStrategy.toText(BalkingStrategy strategy) Convert BalkingStrategy to human-readable text. -
Uses of BalkingStrategy in jline.lang.nodes
Fields in jline.lang.nodes with type parameters of type BalkingStrategyModifier and TypeFieldDescriptionprotected Map<JobClass, BalkingStrategy> Station.balkingStrategiesMethods in jline.lang.nodes that return BalkingStrategyModifier and TypeMethodDescriptionStation.getBalkingStrategy(JobClass jobClass) Gets the effective balking strategy for a specific job class.Station.getBalkingStrategyLocal(JobClass jobClass) Gets the station-specific balking strategy (without fallback).Methods in jline.lang.nodes with parameters of type BalkingStrategyModifier and TypeMethodDescriptionvoidStation.setBalking(JobClass jobClass, BalkingStrategy strategy, int minJobs, double probability) Sets the balking configuration using a single threshold.voidStation.setBalking(JobClass jobClass, BalkingStrategy strategy, List<BalkingThreshold> thresholds) Sets the balking configuration for a specific job class at this station.