static <T> ClassConfiguration<T> |
ClassConfiguration.empty(Class<T> targetClass) |
Create an empty class configuration for the specified class.
|
<T> ClassConfiguration<T> |
Application.getConfiguration(Class<T> someClass) |
Get the configuration properties of the specified class.
|
ClassConfiguration<T> |
ClassConfiguration.merge(ClassConfiguration<T> other) |
Merge the class configuration with another one, overriding the existing values having an identical key.
|
static <T> ClassConfiguration<T> |
ClassConfiguration.of(Class<T> targetClass,
String... keyValuePairs) |
Create a class configuration for the specified class, with the specified properties.
|
static <T> ClassConfiguration<T> |
ClassConfiguration.of(Class<T> targetClass,
Map<String,String> source) |
Create a class configuration for the specified class, with the specified properties.
|