Examples of keyCodecClass()


Examples of info.archinnov.achilles.annotations.TypeTransformer.keyCodecClass()

        return validateInstantiable(field, codecClass);
    }

    private Codec<?, ?> getKeyCodecInstance(Field field) {
        final TypeTransformer typeTransformer = field.getAnnotation(TypeTransformer.class);
        final Class<?> codecClass = typeTransformer.keyCodecClass();

        final String fieldName = field.getName();
        final String className = field.getDeclaringClass().getCanonicalName();

        validateInstanceOfCodec(codecClass, fieldName, className);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.