@Target(value=PARAMETER) @Retention(value=RUNTIME) @Documented public @interface IntegerConfigParam
This annotation marks a parameter in a constructor annotated with ConfigConstructor
that sets a integer value.
Modifier and Type | Required Element and Description |
---|---|
int |
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 int defaultValue
Gets the default value.
public abstract Class<? extends PropertySetter> setter
Gets the PropertySetter
.
Copyright © 2012-2015. All Rights Reserved.