Package org.apache.portals.graffito.jcr.persistence.atomictypeconverter

Examples of org.apache.portals.graffito.jcr.persistence.atomictypeconverter.BooleanTypeConverter


        map.put(Long.class, new LongTypeConverter(session.getValueFactory()));
        map.put(int.class, new IntTypeConverter(session.getValueFactory()));
        map.put(Integer.class, new IntTypeConverter(session.getValueFactory()));
        map.put(double.class, new DoubleTypeConverter(session.getValueFactory()));
        map.put(Double.class, new DoubleTypeConverter(session.getValueFactory()));
        map.put(boolean.class, new BooleanTypeConverter(session.getValueFactory()));
        map.put(Boolean.class, new BooleanTypeConverter(session.getValueFactory()));
        map.put(Calendar.class, new CalendarTypeConverter(session.getValueFactory()));
        map.put(Date.class, new UtilDateTypeConverter(session.getValueFactory()));
        map.put(byte[].class, new ByteArrayTypeConverter(session.getValueFactory()));
        map.put(Timestamp.class, new TimestampTypeConverter(session.getValueFactory()));
View Full Code Here

TOP

Related Classes of org.apache.portals.graffito.jcr.persistence.atomictypeconverter.BooleanTypeConverter

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.