@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Default
Defines the default value for a configuration item (leaf).
Default values are loaded first and can be overridden by any other configuration source
(so they have lowest preference).
interface Fuu {
\@Default("42") int theAnswer();
}