All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.marklogic.xcc.ValueFactory Maven / Gradle / Ivy

The newest version!
package com.marklogic.xcc;

import com.marklogic.xcc.types.XName;
import com.marklogic.xcc.types.XSString;
import com.marklogic.xcc.types.XdmValue;
import com.marklogic.xcc.types.XdmVariable;

/**
 * This class contains various static factory methods that return instances of
 * {@link XdmValue} and {@link XdmVariable}.
 *
 * @see 
 * Class ValueFactory
 */
public class ValueFactory {

    public static XdmVariable newVariable(XName name, XdmValue value) {
        throw new UnsupportedOperationException();
    }

    public static XSString newXSString(String value) {
        throw new UnsupportedOperationException();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy