Package org.mongodb.morphia.annotations

Examples of org.mongodb.morphia.annotations.Converters


        final List<Annotation> convertersList = mc.getAnnotations(Converters.class);
        if (convertersList != null) {
           
            for (Annotation a : convertersList) {
                final Converters c = (Converters) a;
                if (c != null) {
                    for (final Class<? extends TypeConverter> clazz : c.value()) {
                        if (!getConverters().isRegistered(clazz)) {
                            getConverters().addConverter(clazz);
                        }
                    }
                }
View Full Code Here

TOP

Related Classes of org.mongodb.morphia.annotations.Converters

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.