openEHR.v1.template.ITEM 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: ITEM
* Namespace: openEHR/v1/Template
* Java type: openEHR.v1.template.ITEM
*
* Automatically generated - do not modify.
*/
package openEHR.v1.template;
/**
* An XML ITEM(@openEHR/v1/Template).
*
* This is a complex type.
*/
public interface ITEM extends openEHR.v1.template.Archetyped
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ITEM.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sADF9D9697439DFAA95C3BAFDA11C5681").resolveHandle("item06e0type");
/**
* Gets array of all "Rule" elements
*/
openEHR.v1.template.Statement[] getRuleArray();
/**
* Gets ith "Rule" element
*/
openEHR.v1.template.Statement getRuleArray(int i);
/**
* Returns number of "Rule" element
*/
int sizeOfRuleArray();
/**
* Sets array of all "Rule" element
*/
void setRuleArray(openEHR.v1.template.Statement[] ruleArray);
/**
* Sets ith "Rule" element
*/
void setRuleArray(int i, openEHR.v1.template.Statement rule);
/**
* Inserts and returns a new empty value (as xml) as the ith "Rule" element
*/
openEHR.v1.template.Statement insertNewRule(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Rule" element
*/
openEHR.v1.template.Statement addNewRule();
/**
* Removes the ith "Rule" element
*/
void removeRule(int i);
/**
* Gets the "nameConstraint" element
*/
openEHR.v1.template.TextConstraint getNameConstraint();
/**
* True if has "nameConstraint" element
*/
boolean isSetNameConstraint();
/**
* Sets the "nameConstraint" element
*/
void setNameConstraint(openEHR.v1.template.TextConstraint nameConstraint);
/**
* Appends and returns a new empty "nameConstraint" element
*/
openEHR.v1.template.TextConstraint addNewNameConstraint();
/**
* Unsets the "nameConstraint" element
*/
void unsetNameConstraint();
/**
* Gets the "Conditional" element
*/
openEHR.v1.template.Condition getConditional();
/**
* True if has "Conditional" element
*/
boolean isSetConditional();
/**
* Sets the "Conditional" element
*/
void setConditional(openEHR.v1.template.Condition conditional);
/**
* Appends and returns a new empty "Conditional" element
*/
openEHR.v1.template.Condition addNewConditional();
/**
* Unsets the "Conditional" element
*/
void unsetConditional();
/**
* Gets the "max" attribute
*/
java.math.BigInteger getMax();
/**
* Gets (as xml) the "max" attribute
*/
org.apache.xmlbeans.XmlInteger xgetMax();
/**
* True if has "max" attribute
*/
boolean isSetMax();
/**
* Sets the "max" attribute
*/
void setMax(java.math.BigInteger max);
/**
* Sets (as xml) the "max" attribute
*/
void xsetMax(org.apache.xmlbeans.XmlInteger max);
/**
* Unsets the "max" attribute
*/
void unsetMax();
/**
* Gets the "min" attribute
*/
java.math.BigInteger getMin();
/**
* Gets (as xml) the "min" attribute
*/
org.apache.xmlbeans.XmlInteger xgetMin();
/**
* True if has "min" attribute
*/
boolean isSetMin();
/**
* Sets the "min" attribute
*/
void setMin(java.math.BigInteger min);
/**
* Sets (as xml) the "min" attribute
*/
void xsetMin(org.apache.xmlbeans.XmlInteger min);
/**
* Unsets the "min" attribute
*/
void unsetMin();
/**
* Gets the "path" attribute
*/
java.lang.String getPath();
/**
* Gets (as xml) the "path" attribute
*/
org.apache.xmlbeans.XmlString xgetPath();
/**
* True if has "path" attribute
*/
boolean isSetPath();
/**
* Sets the "path" attribute
*/
void setPath(java.lang.String path);
/**
* Sets (as xml) the "path" attribute
*/
void xsetPath(org.apache.xmlbeans.XmlString path);
/**
* Unsets the "path" attribute
*/
void unsetPath();
/**
* Gets the "name" attribute
*/
java.lang.String getName();
/**
* Gets (as xml) the "name" attribute
*/
org.apache.xmlbeans.XmlString xgetName();
/**
* True if has "name" attribute
*/
boolean isSetName();
/**
* Sets the "name" attribute
*/
void setName(java.lang.String name);
/**
* Sets (as xml) the "name" attribute
*/
void xsetName(org.apache.xmlbeans.XmlString name);
/**
* Unsets the "name" attribute
*/
void unsetName();
/**
* Gets the "hide_on_form" attribute
*/
boolean getHideOnForm();
/**
* Gets (as xml) the "hide_on_form" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetHideOnForm();
/**
* True if has "hide_on_form" attribute
*/
boolean isSetHideOnForm();
/**
* Sets the "hide_on_form" attribute
*/
void setHideOnForm(boolean hideOnForm);
/**
* Sets (as xml) the "hide_on_form" attribute
*/
void xsetHideOnForm(org.apache.xmlbeans.XmlBoolean hideOnForm);
/**
* Unsets the "hide_on_form" attribute
*/
void unsetHideOnForm();
/**
* Gets the "annotation" attribute
*/
java.lang.String getAnnotation();
/**
* Gets (as xml) the "annotation" attribute
*/
org.apache.xmlbeans.XmlString xgetAnnotation();
/**
* True if has "annotation" attribute
*/
boolean isSetAnnotation();
/**
* Sets the "annotation" attribute
*/
void setAnnotation(java.lang.String annotation);
/**
* Sets (as xml) the "annotation" attribute
*/
void xsetAnnotation(org.apache.xmlbeans.XmlString annotation);
/**
* Unsets the "annotation" attribute
*/
void unsetAnnotation();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
/** @deprecated No need to be able to create instances of abstract types */
public static openEHR.v1.template.ITEM newInstance() {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
/** @deprecated No need to be able to create instances of abstract types */
public static openEHR.v1.template.ITEM newInstance(org.apache.xmlbeans.XmlOptions options) {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static openEHR.v1.template.ITEM parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static openEHR.v1.template.ITEM parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.ITEM) 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.ITEM parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static openEHR.v1.template.ITEM parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static openEHR.v1.template.ITEM parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static openEHR.v1.template.ITEM parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static openEHR.v1.template.ITEM parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static openEHR.v1.template.ITEM parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static openEHR.v1.template.ITEM parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static openEHR.v1.template.ITEM parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static openEHR.v1.template.ITEM parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static openEHR.v1.template.ITEM parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static openEHR.v1.template.ITEM parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static openEHR.v1.template.ITEM parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static openEHR.v1.template.ITEM parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (openEHR.v1.template.ITEM) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static openEHR.v1.template.ITEM 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.ITEM) 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
}
}