com.marklogic.xcc.ValueFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmlcalabash-extension-stubs Show documentation
Show all versions of xmlcalabash-extension-stubs Show documentation
This artifact defines API stubs for compiling extension classes.
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