@Target(value=PARAMETER) @Retention(value=RUNTIME) @Documented public @interface StringConfigParam
This annotation marks a parameter in a constructor annotated with ConfigConstructor
that sets a string value.
Modifier and Type | Required Element and Description |
---|---|
String |
defaultValue
Gets the default value.
|
String |
propertyKey
Gets the property key for this parameter.
|
Modifier and Type | Optional Element and Description |
---|---|
Class<? extends PropertySetter> |
setter
Gets the
PropertySetter . |
public abstract String propertyKey
Gets the property key for this parameter.
public abstract String defaultValue
Gets the default value.
public abstract Class<? extends PropertySetter> setter
Gets the PropertySetter
.
Copyright © 2012-2015. All Rights Reserved.