public enum LearnLibProperty extends Enum<LearnLibProperty>
| Enum Constant and Description |
|---|
PARALLEL_BATCH_SIZE_DYNAMIC
learnlib.parallel.batch_size.dynamic. |
PARALLEL_BATCH_SIZE_STATIC
learnlib.parallel.batch_size.static. |
PARALLEL_POOL_POLICY
learnlib.parallel.pool_policy. |
PARALLEL_POOL_SIZE
learnlib.parallel.pool_size. |
| Modifier and Type | Method and Description |
|---|---|
String |
getPropertyKey()
Returns the actual system property key of the property.
|
static LearnLibProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LearnLibProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LearnLibProperty PARALLEL_BATCH_SIZE_DYNAMIC
learnlib.parallel.batch_size.dynamic.
Size of query batches for dynamic parallel oracles.
public static final LearnLibProperty PARALLEL_BATCH_SIZE_STATIC
learnlib.parallel.batch_size.static.
Minimum size of query batches for static parallel oracles.
public static final LearnLibProperty PARALLEL_POOL_POLICY
learnlib.parallel.pool_policy.
Pool policy for threads of parallel oracles.
See de.learnlib.oracle.parallelism.ParallelOracle#PoolPolicy
public static final LearnLibProperty PARALLEL_POOL_SIZE
learnlib.parallel.pool_size.
Size of thread pools for parallel oracles.
public static LearnLibProperty[] values()
for (LearnLibProperty c : LearnLibProperty.values()) System.out.println(c);
public static LearnLibProperty valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getPropertyKey()
Copyright © 2020. All rights reserved.