Class BuilderConfiguration
- java.lang.Object
-
- com.tngtech.configbuilder.configuration.BuilderConfiguration
-
public class BuilderConfiguration extends Object
Stores the configuration for the ConfigBuilder, i.e. the CommandLine, the Properties and the global annotation processing order.
-
-
Constructor Summary
Constructors Constructor Description BuilderConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends Annotation>[]getAnnotationOrder()org.apache.commons.cli.CommandLinegetCommandLine()ObjectgetImportedConfiguration()PropertiesgetProperties()String[]getPropertyNamePrefixes()voidsetAnnotationOrder(Class<? extends Annotation>[] annotationOrder)voidsetCommandLine(org.apache.commons.cli.CommandLine commandLine)voidsetImportedConfiguration(Object importedConfiguration)voidsetProperties(Properties properties)voidsetPropertyNamePrefixes(String[] propertyNamePrefixes)
-
-
-
Method Detail
-
getCommandLine
public org.apache.commons.cli.CommandLine getCommandLine()
-
getProperties
public Properties getProperties()
-
getImportedConfiguration
public Object getImportedConfiguration()
-
setProperties
public void setProperties(Properties properties)
-
setCommandLine
public void setCommandLine(org.apache.commons.cli.CommandLine commandLine)
-
setImportedConfiguration
public void setImportedConfiguration(Object importedConfiguration)
-
setAnnotationOrder
public void setAnnotationOrder(Class<? extends Annotation>[] annotationOrder)
-
getAnnotationOrder
public Class<? extends Annotation>[] getAnnotationOrder()
-
setPropertyNamePrefixes
public void setPropertyNamePrefixes(String[] propertyNamePrefixes)
-
getPropertyNamePrefixes
public String[] getPropertyNamePrefixes()
-
-