Class PrefixedConfigurationParameters
- java.lang.Object
-
- org.junit.platform.engine.support.config.PrefixedConfigurationParameters
-
- All Implemented Interfaces:
ConfigurationParameters
@API(status=EXPERIMENTAL, since="1.3") public class PrefixedConfigurationParameters extends Object implements ConfigurationParameters
View ofConfigurationParameters
that applies a supplied prefix to all queries.- Since:
- 1.3
-
-
Field Summary
-
Fields inherited from interface org.junit.platform.engine.ConfigurationParameters
CONFIG_FILE_NAME
-
-
Constructor Summary
Constructors Constructor Description PrefixedConfigurationParameters(ConfigurationParameters delegate, String prefix)
Create a new view of the suppliedConfigurationParameters
that applies the supplied prefix to all queries.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<String>
get(String key)
Get the configuration parameter stored under the specifiedkey
.<T> Optional<T>
get(String key, Function<String,T> transformer)
Get and transform the configuration parameter stored under the specifiedkey
using the specifiedtransformer
.Optional<Boolean>
getBoolean(String key)
Get the boolean configuration parameter stored under the specifiedkey
.int
size()
Get the number of configuration parameters stored directly in thisConfigurationParameters
.
-
-
-
Constructor Detail
-
PrefixedConfigurationParameters
public PrefixedConfigurationParameters(ConfigurationParameters delegate, String prefix)
Create a new view of the suppliedConfigurationParameters
that applies the supplied prefix to all queries.- Parameters:
delegate
- theConfigurationParameters
to delegate to; nevernull
prefix
- the prefix to apply to all queries; nevernull
-
-
Method Detail
-
get
public Optional<String> get(String key)
Description copied from interface:ConfigurationParameters
Get the configuration parameter stored under the specifiedkey
.If no such key is present in this
ConfigurationParameters
, an attempt will be made to look up the value as a JVM system property. If no such system property exists, an attempt will be made to look up the value in the JUnit Platform properties file.- Specified by:
get
in interfaceConfigurationParameters
- Parameters:
key
- the key to look up; nevernull
or blank- Returns:
- an
Optional
containing the value; nevernull
but potentially empty - See Also:
ConfigurationParameters.getBoolean(String)
,System.getProperty(String)
,ConfigurationParameters.CONFIG_FILE_NAME
-
getBoolean
public Optional<Boolean> getBoolean(String key)
Description copied from interface:ConfigurationParameters
Get the boolean configuration parameter stored under the specifiedkey
.If no such key is present in this
ConfigurationParameters
, an attempt will be made to look up the value as a JVM system property. If no such system property exists, an attempt will be made to look up the value in the JUnit Platform properties file.- Specified by:
getBoolean
in interfaceConfigurationParameters
- Parameters:
key
- the key to look up; nevernull
or blank- Returns:
- an
Optional
containing the value; nevernull
but potentially empty - See Also:
ConfigurationParameters.get(String)
,Boolean.parseBoolean(String)
,System.getProperty(String)
,ConfigurationParameters.CONFIG_FILE_NAME
-
get
public <T> Optional<T> get(String key, Function<String,T> transformer)
Description copied from interface:ConfigurationParameters
Get and transform the configuration parameter stored under the specifiedkey
using the specifiedtransformer
.If no such key is present in this
ConfigurationParameters
, an attempt will be made to look up the value as a JVM system property. If no such system property exists, an attempt will be made to look up the value in the JUnit Platform properties file.In case the transformer throws an exception, it will be wrapped in a
JUnitException
with a helpful message.- Specified by:
get
in interfaceConfigurationParameters
- Parameters:
key
- the key to look up; nevernull
or blanktransformer
- the transformer to apply in case a value is found; nevernull
- Returns:
- an
Optional
containing the value; nevernull
but potentially empty - See Also:
ConfigurationParameters.getBoolean(String)
,System.getProperty(String)
,ConfigurationParameters.CONFIG_FILE_NAME
-
size
public int size()
Description copied from interface:ConfigurationParameters
Get the number of configuration parameters stored directly in thisConfigurationParameters
.- Specified by:
size
in interfaceConfigurationParameters
-
-