![JAR search and dependency download from the Maven repository](/logo.png)
openEHR.v1.template.TextConstraint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oet-parser Show documentation
Show all versions of oet-parser Show documentation
Java implementation of openEHR OET Template Parser and Flattener
The newest version!
/*
* XML Type: textConstraint
* Namespace: openEHR/v1/Template
* Java type: openEHR.v1.template.TextConstraint
*
* Automatically generated - do not modify.
*/
package openEHR.v1.template;
/**
* An XML textConstraint(@openEHR/v1/Template).
*
* This is a complex type.
*/
public interface TextConstraint extends openEHR.v1.template.ValueConstraint
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TextConstraint.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sADF9D9697439DFAA95C3BAFDA11C5681").resolveHandle("textconstraint35f7type");
/**
* Gets the "termQueryId" element
*/
openEHR.v1.template.Binding getTermQueryId();
/**
* True if has "termQueryId" element
*/
boolean isSetTermQueryId();
/**
* Sets the "termQueryId" element
*/
void setTermQueryId(openEHR.v1.template.Binding termQueryId);
/**
* Appends and returns a new empty "termQueryId" element
*/
openEHR.v1.template.Binding addNewTermQueryId();
/**
* Unsets the "termQueryId" element
*/
void unsetTermQueryId();
/**
* Gets array of all "includedValues" elements
*/
java.lang.String[] getIncludedValuesArray();
/**
* Gets ith "includedValues" element
*/
java.lang.String getIncludedValuesArray(int i);
/**
* Gets (as xml) array of all "includedValues" elements
*/
org.apache.xmlbeans.XmlString[] xgetIncludedValuesArray();
/**
* Gets (as xml) ith "includedValues" element
*/
org.apache.xmlbeans.XmlString xgetIncludedValuesArray(int i);
/**
* Returns number of "includedValues" element
*/
int sizeOfIncludedValuesArray();
/**
* Sets array of all "includedValues" element
*/
void setIncludedValuesArray(java.lang.String[] includedValuesArray);
/**
* Sets ith "includedValues" element
*/
void setIncludedValuesArray(int i, java.lang.String includedValues);
/**
* Sets (as xml) array of all "includedValues" element
*/
void xsetIncludedValuesArray(org.apache.xmlbeans.XmlString[] includedValuesArray);
/**
* Sets (as xml) ith "includedValues" element
*/
void xsetIncludedValuesArray(int i, org.apache.xmlbeans.XmlString includedValues);
/**
* Inserts the value as the ith "includedValues" element
*/
void insertIncludedValues(int i, java.lang.String includedValues);
/**
* Appends the value as the last "includedValues" element
*/
void addIncludedValues(java.lang.String includedValues);
/**
* Inserts and returns a new empty value (as xml) as the ith "includedValues" element
*/
org.apache.xmlbeans.XmlString insertNewIncludedValues(int i);
/**
* Appends and returns a new empty value (as xml) as the last "includedValues" element
*/
org.apache.xmlbeans.XmlString addNewIncludedValues();
/**
* Removes the ith "includedValues" element
*/
void removeIncludedValues(int i);
/**
* Gets array of all "excludedValues" elements
*/
java.lang.String[] getExcludedValuesArray();
/**
* Gets ith "excludedValues" element
*/
java.lang.String getExcludedValuesArray(int i);
/**
* Gets (as xml) array of all "excludedValues" elements
*/
org.apache.xmlbeans.XmlString[] xgetExcludedValuesArray();
/**
* Gets (as xml) ith "excludedValues" element
*/
org.apache.xmlbeans.XmlString xgetExcludedValuesArray(int i);
/**
* Returns number of "excludedValues" element
*/
int sizeOfExcludedValuesArray();
/**
* Sets array of all "excludedValues" element
*/
void setExcludedValuesArray(java.lang.String[] excludedValuesArray);
/**
* Sets ith "excludedValues" element
*/
void setExcludedValuesArray(int i, java.lang.String excludedValues);
/**
* Sets (as xml) array of all "excludedValues" element
*/
void xsetExcludedValuesArray(org.apache.xmlbeans.XmlString[] excludedValuesArray);
/**
* Sets (as xml) ith "excludedValues" element
*/
void xsetExcludedValuesArray(int i, org.apache.xmlbeans.XmlString excludedValues);
/**
* Inserts the value as the ith "excludedValues" element
*/
void insertExcludedValues(int i, java.lang.String excludedValues);
/**
* Appends the value as the last "excludedValues" element
*/
void addExcludedValues(java.lang.String excludedValues);
/**
* Inserts and returns a new empty value (as xml) as the ith "excludedValues" element
*/
org.apache.xmlbeans.XmlString insertNewExcludedValues(int i);
/**
* Appends and returns a new empty value (as xml) as the last "excludedValues" element
*/
org.apache.xmlbeans.XmlString addNewExcludedValues();
/**
* Removes the ith "excludedValues" element
*/
void removeExcludedValues(int i);
/**
* Gets the "limitToList" attribute
*/
boolean getLimitToList();
/**
* Gets (as xml) the "limitToList" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetLimitToList();
/**
* True if has "limitToList" attribute
*/
boolean isSetLimitToList();
/**
* Sets the "limitToList" attribute
*/
void setLimitToList(boolean limitToList);
/**
* Sets (as xml) the "limitToList" attribute
*/
void xsetLimitToList(org.apache.xmlbeans.XmlBoolean limitToList);
/**
* Unsets the "limitToList" attribute
*/
void unsetLimitToList();
/**
* Gets the "allowTerminologyLookUp" attribute
*/
boolean getAllowTerminologyLookUp();
/**
* Gets (as xml) the "allowTerminologyLookUp" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetAllowTerminologyLookUp();
/**
* True if has "allowTerminologyLookUp" attribute
*/
boolean isSetAllowTerminologyLookUp();
/**
* Sets the "allowTerminologyLookUp" attribute
*/
void setAllowTerminologyLookUp(boolean allowTerminologyLookUp);
/**
* Sets (as xml) the "allowTerminologyLookUp" attribute
*/
void xsetAllowTerminologyLookUp(org.apache.xmlbeans.XmlBoolean allowTerminologyLookUp);
/**
* Unsets the "allowTerminologyLookUp" attribute
*/
void unsetAllowTerminologyLookUp();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static openEHR.v1.template.TextConstraint newInstance() {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static openEHR.v1.template.TextConstraint newInstance(org.apache.xmlbeans.XmlOptions options) {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static openEHR.v1.template.TextConstraint parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static openEHR.v1.template.TextConstraint parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static openEHR.v1.template.TextConstraint parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static openEHR.v1.template.TextConstraint parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static openEHR.v1.template.TextConstraint parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static openEHR.v1.template.TextConstraint parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static openEHR.v1.template.TextConstraint parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static openEHR.v1.template.TextConstraint parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static openEHR.v1.template.TextConstraint parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static openEHR.v1.template.TextConstraint parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static openEHR.v1.template.TextConstraint parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static openEHR.v1.template.TextConstraint parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static openEHR.v1.template.TextConstraint parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static openEHR.v1.template.TextConstraint parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static openEHR.v1.template.TextConstraint parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static openEHR.v1.template.TextConstraint parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (openEHR.v1.template.TextConstraint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
private Factory() { } // No instance of this class allowed
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy