Examples of toJCRValue()


Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

        int type = val.getType();
        if (type == PropertyType.DATE) {
            return (Calendar) val.internalValue();
        }
        // not a DATE value, delegate conversion to Value object
        return val.toJCRValue(session.getNamespaceResolver()).getDate();
    }

    /**
     * {@inheritDoc}
     */
 
View Full Code Here

Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

        int type = val.getType();
        if (type == PropertyType.BOOLEAN) {
            return ((Boolean) val.internalValue()).booleanValue();
        }
        // not a BOOLEAN value, delegate conversion to Value object
        return val.toJCRValue(session.getNamespaceResolver()).getBoolean();
    }

    /**
     * {@inheritDoc}
     */
 
View Full Code Here

Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

                InternalValue ival =
                    InternalValue.create(ValueHelper.convert(
                            retrieve(), targetType, ValueFactoryImpl.getInstance()), nsContext);
                // convert InternalValue to Value using this
                // session's namespace mappings
                return ival.toJCRValue(resolver);
            } else if (targetType == PropertyType.BINARY) {
                if (length() < 0x10000) {
                    // < 65kb: deserialize BINARY type using String
                    return ValueHelper.deserialize(retrieve(), targetType, false, ValueFactoryImpl.getInstance());
                } else {
View Full Code Here

Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

            InternalValue ival =
                    InternalValue.create(ValueHelper.convert(
                            value, type, ValueFactoryImpl.getInstance()), nsContext);
            // convert InternalValue to Value using this
            // session's namespace mappings
            return ival.toJCRValue(resolver);
        } else {
            // all other types
            return ValueHelper.deserialize(value, type, false, ValueFactoryImpl.getInstance());
        }
    }
View Full Code Here

Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

            InternalValue ival =
                    InternalValue.create(ValueHelper.convert(
                            value, type, ValueFactoryImpl.getInstance()), nsContext);
            // convert InternalValue to Value using this
            // session's namespace mappings
            return ival.toJCRValue(resolver);
        } else if (type == PropertyType.BINARY) {
            return ValueHelper.deserialize(value, type, false, ValueFactoryImpl.getInstance());
        } else {
            // all other types
            return ValueHelper.deserialize(value, type, true, ValueFactoryImpl.getInstance());
View Full Code Here

Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

                InternalValue ival =
                    InternalValue.create(ValueHelper.convert(
                            retrieve(), targetType, ValueFactoryImpl.getInstance()), nsContext);
                // convert InternalValue to Value using this
                // session's namespace mappings
                return ival.toJCRValue(resolver);
            } else if (targetType == PropertyType.BINARY) {
                if (length() < 0x10000) {
                    // < 65kb: deserialize BINARY type using String
                    return ValueHelper.deserialize(retrieve(), targetType, false, ValueFactoryImpl.getInstance());
                } else {
View Full Code Here

Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

        }

        PropertyState state = (PropertyState) getItemState();
        try {
            InternalValue val = state.getValues()[0];
            return val.toJCRValue(session.getNamespaceResolver());
        } catch (RepositoryException e) {
            throw e;
        } catch (Exception e) {
            String msg = "Internal error while retrieving value of "
                    + safeGetJCRPath();
View Full Code Here

Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

        int type = val.getType();
        if (type == PropertyType.LONG) {
            return ((Long) val.internalValue()).longValue();
        }
        // not a LONG value, delegate conversion to Value object
        return val.toJCRValue(session.getNamespaceResolver()).getLong();
    }

    /**
     * {@inheritDoc}
     */
 
View Full Code Here

Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

        int type = val.getType();
        if (type == PropertyType.DOUBLE) {
            return ((Double) val.internalValue()).doubleValue();
        }
        // not a DOUBLE value, delegate conversion to Value object
        return val.toJCRValue(session.getNamespaceResolver()).getDouble();
    }

    /**
     * {@inheritDoc}
     */
 
View Full Code Here

Examples of org.apache.jackrabbit.core.value.InternalValue.toJCRValue()

        int type = val.getType();
        if (type == PropertyType.DATE) {
            return (Calendar) val.internalValue();
        }
        // not a DATE value, delegate conversion to Value object
        return val.toJCRValue(session.getNamespaceResolver()).getDate();
    }

    /**
     * {@inheritDoc}
     */
 
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.