Package xbird.xquery.dm.value.literal

Examples of xbird.xquery.dm.value.literal.XFloat


     * @see AtomicValue#castAs(AtomicType, DynamicContext)
     */
    public AtomicValue createInstance(String literal, AtomicType srcType, DynamicContext dynEnv)
            throws XQueryException {
        try {
            return new XFloat(literal);
        } catch (NumberFormatException e) {
            throw new DynamicError("err:FORG0001", e);
        }
    }
View Full Code Here

TOP

Related Classes of xbird.xquery.dm.value.literal.XFloat

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.