@Retention(value=RUNTIME) @Target(value=METHOD) public @interface Mapping
Configuration
maps to a configuration option name. The value of the annotation is an array
of strings. The strings are ordered elements of an option's canonical names.
For example:
-compiler.namespaces.namespace
maps to
@Mapping({"compiler", "namespaces", "namespace"})
This annotation is created to decouple the field name in
Configuration
and the real option name.
public abstract String[] value
Copyright © 2016 The Apache Software Foundation. All rights reserved.