Package | Description |
---|---|
com.net2plan.interfaces.networkDesign |
Provides a set of classes and interfaces for the network design tool.
|
com.net2plan.interfaces.simulation |
Provides a set of classes for the online simulator tool.
|
com.net2plan.libraries |
Provides a set of useful libraries to develop algorithms and reports.
|
com.net2plan.utils |
General utility static methods.
|
Modifier and Type | Method and Description |
---|---|
static List<Triple<String,String,String>> |
Configuration.getNet2PlanParameters()
Returns the list of Net2Plan-wide parameters, where the first item of each element
is the parameter name, the second one is the parameter value, and the third
one is the parameter description.
|
List<Triple<String,String,String>> |
IAlgorithm.getParameters()
Returns the list of required parameters, where the first item of each element
is the parameter name, the second one is the parameter value, and the third
one is the parameter description.
|
List<Triple<String,String,String>> |
IReport.getParameters()
Returns the list of required parameters, where the first item of each element
is the parameter name, the second one is the parameter value, and the third
one is the parameter description.
|
Modifier and Type | Method and Description |
---|---|
List<Triple<String,String,String>> |
ICombinedEventGenerator.getParameters() |
List<Triple<String,String,String>> |
ICombinedEventProcessor.getParameters() |
abstract List<Triple<String,String,String>> |
IEventGenerator.getParameters()
Returns the list of required parameters, where the first item of each element
is the parameter name, the second one is the parameter value, and the third
one is the parameter description.
|
abstract List<Triple<String,String,String>> |
IEventProcessor.getParameters()
Returns the list of required parameters, where the first item of each element
is the parameter name, the second one is the parameter value, and the third
one is the parameter description.
|
Modifier and Type | Method and Description |
---|---|
static Triple<Double,Double,Double> |
TrafficComputationEngine.getTrafficProtectionDegree(NetPlan netPlan)
Returns the statistics for protection degree carried traffic.
|
static Triple<Double,Double,Double> |
TrafficComputationEngine.getTrafficProtectionDegree(NetPlan netPlan,
long layerId)
Returns the statistics for protection degree carried traffic.
|
Modifier and Type | Method and Description |
---|---|
static <A,B,C> Triple<A,B,C> |
Triple.of(A a,
B b,
C c)
This factory allows a triple to be created using inference to obtain the generic types.
|
static <A,B,C> Triple<A,B,C> |
Triple.unmodifiableOf(A a,
B b,
C c)
This factory allows an unmodifiable triple to be created using inference to obtain the generic types.
|