Package org.apache.jackrabbit.value

Examples of org.apache.jackrabbit.value.DateValue


            case PropertyType.BINARY:
                return new BinaryValueImpl((BLOBFileValue) val);
            case PropertyType.BOOLEAN:
                return new BooleanValue(((Boolean) val));
            case PropertyType.DATE:
                return new DateValue((Calendar) val);
            case PropertyType.DOUBLE:
                return new DoubleValue((Double) val);
            case PropertyType.LONG:
                return new LongValue((Long) val);
            case PropertyType.REFERENCE:
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.value.DateValue

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.