Package org.aeonbits.owner.Config

Examples of org.aeonbits.owner.Config.Key


    /** Don't let anyone instantiate this class */
    private PropertiesMapper() {}

    static String key(Method method) {
        Key key = method.getAnnotation(Key.class);
        return (key == null) ? method.getName() : key.value();
    }
View Full Code Here

TOP

Related Classes of org.aeonbits.owner.Config.Key

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.