de.learnlib.setting.LearnLibProperty Maven / Gradle / Ivy
Show all versions of learnlib-settings Show documentation
/* Copyright (C) 2013-2023 TU Dortmund
* This file is part of LearnLib, http://www.learnlib.de/.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.learnlib.setting;
/**
* An enum of all the system properties currently used by LearnLib.
*/
public enum LearnLibProperty {
/**
* {@code learnlib.parallel.batch_size.dynamic}.
*
* Size of query batches for dynamic parallel oracles.
*/
PARALLEL_BATCH_SIZE_DYNAMIC("parallel.batch_size.dynamic"),
/**
* {@code learnlib.parallel.batch_size.static}.
*
* Minimum size of query batches for static parallel oracles.
*/
PARALLEL_BATCH_SIZE_STATIC("parallel.batch_size.static"),
/**
* {@code learnlib.parallel.pool_policy}.
*
* Pool policy for threads of parallel oracles.
*
* See de.learnlib.oracle.parallelism.ParallelOracle#PoolPolicy
*/
PARALLEL_POOL_POLICY("parallel.pool_policy"),
/**
* {@code learnlib.parallel.pool_size}.
*
* Size of thread pools for parallel oracles.
*/
PARALLEL_POOL_SIZE("parallel.pool_size");
private final String key;
LearnLibProperty(String key) {
this.key = "learnlib." + key;
}
/**
* Returns the actual system property key of the property.
*
* @return the system property key of the property.
*/
public String getPropertyKey() {
return this.key;
}
}