org.openehr.schemas.v1.EXTRACTSPEC 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: EXTRACT_SPEC
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.EXTRACTSPEC
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1;
/**
* An XML EXTRACT_SPEC(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public interface EXTRACTSPEC extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(EXTRACTSPEC.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sADF9D9697439DFAA95C3BAFDA11C5681").resolveHandle("extractspec1afftype");
/**
* Gets the "extract_type" element
*/
java.lang.String getExtractType();
/**
* Gets (as xml) the "extract_type" element
*/
org.apache.xmlbeans.XmlString xgetExtractType();
/**
* Sets the "extract_type" element
*/
void setExtractType(java.lang.String extractType);
/**
* Sets (as xml) the "extract_type" element
*/
void xsetExtractType(org.apache.xmlbeans.XmlString extractType);
/**
* Gets the "includes_multimedia" element
*/
boolean getIncludesMultimedia();
/**
* Gets (as xml) the "includes_multimedia" element
*/
org.apache.xmlbeans.XmlBoolean xgetIncludesMultimedia();
/**
* Sets the "includes_multimedia" element
*/
void setIncludesMultimedia(boolean includesMultimedia);
/**
* Sets (as xml) the "includes_multimedia" element
*/
void xsetIncludesMultimedia(org.apache.xmlbeans.XmlBoolean includesMultimedia);
/**
* Gets the "link_depth" element
*/
int getLinkDepth();
/**
* Gets (as xml) the "link_depth" element
*/
org.apache.xmlbeans.XmlInt xgetLinkDepth();
/**
* Sets the "link_depth" element
*/
void setLinkDepth(int linkDepth);
/**
* Sets (as xml) the "link_depth" element
*/
void xsetLinkDepth(org.apache.xmlbeans.XmlInt linkDepth);
/**
* Gets array of all "criteria" elements
*/
org.openehr.schemas.v1.DVPARSABLE[] getCriteriaArray();
/**
* Gets ith "criteria" element
*/
org.openehr.schemas.v1.DVPARSABLE getCriteriaArray(int i);
/**
* Returns number of "criteria" element
*/
int sizeOfCriteriaArray();
/**
* Sets array of all "criteria" element
*/
void setCriteriaArray(org.openehr.schemas.v1.DVPARSABLE[] criteriaArray);
/**
* Sets ith "criteria" element
*/
void setCriteriaArray(int i, org.openehr.schemas.v1.DVPARSABLE criteria);
/**
* Inserts and returns a new empty value (as xml) as the ith "criteria" element
*/
org.openehr.schemas.v1.DVPARSABLE insertNewCriteria(int i);
/**
* Appends and returns a new empty value (as xml) as the last "criteria" element
*/
org.openehr.schemas.v1.DVPARSABLE addNewCriteria();
/**
* Removes the ith "criteria" element
*/
void removeCriteria(int i);
/**
* Gets the "includes_directory" element
*/
boolean getIncludesDirectory();
/**
* Gets (as xml) the "includes_directory" element
*/
org.apache.xmlbeans.XmlBoolean xgetIncludesDirectory();
/**
* Sets the "includes_directory" element
*/
void setIncludesDirectory(boolean includesDirectory);
/**
* Sets (as xml) the "includes_directory" element
*/
void xsetIncludesDirectory(org.apache.xmlbeans.XmlBoolean includesDirectory);
/**
* Gets the "directory_archetype" element
*/
org.openehr.schemas.v1.ARCHETYPEID getDirectoryArchetype();
/**
* True if has "directory_archetype" element
*/
boolean isSetDirectoryArchetype();
/**
* Sets the "directory_archetype" element
*/
void setDirectoryArchetype(org.openehr.schemas.v1.ARCHETYPEID directoryArchetype);
/**
* Appends and returns a new empty "directory_archetype" element
*/
org.openehr.schemas.v1.ARCHETYPEID addNewDirectoryArchetype();
/**
* Unsets the "directory_archetype" element
*/
void unsetDirectoryArchetype();
/**
* Gets the "other_details" element
*/
org.openehr.schemas.v1.ITEMSTRUCTURE getOtherDetails();
/**
* True if has "other_details" element
*/
boolean isSetOtherDetails();
/**
* Sets the "other_details" element
*/
void setOtherDetails(org.openehr.schemas.v1.ITEMSTRUCTURE otherDetails);
/**
* Appends and returns a new empty "other_details" element
*/
org.openehr.schemas.v1.ITEMSTRUCTURE addNewOtherDetails();
/**
* Unsets the "other_details" element
*/
void unsetOtherDetails();
/**
* Gets the "version_spec" element
*/
org.openehr.schemas.v1.EXTRACTVERSIONSPEC getVersionSpec();
/**
* True if has "version_spec" element
*/
boolean isSetVersionSpec();
/**
* Sets the "version_spec" element
*/
void setVersionSpec(org.openehr.schemas.v1.EXTRACTVERSIONSPEC versionSpec);
/**
* Appends and returns a new empty "version_spec" element
*/
org.openehr.schemas.v1.EXTRACTVERSIONSPEC addNewVersionSpec();
/**
* Unsets the "version_spec" element
*/
void unsetVersionSpec();
/**
* Gets the "manifest" element
*/
org.openehr.schemas.v1.EXTRACTMANIFEST getManifest();
/**
* Sets the "manifest" element
*/
void setManifest(org.openehr.schemas.v1.EXTRACTMANIFEST manifest);
/**
* Appends and returns a new empty "manifest" element
*/
org.openehr.schemas.v1.EXTRACTMANIFEST addNewManifest();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static org.openehr.schemas.v1.EXTRACTSPEC newInstance() {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static org.openehr.schemas.v1.EXTRACTSPEC newInstance(org.apache.xmlbeans.XmlOptions options) {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static org.openehr.schemas.v1.EXTRACTSPEC parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.openehr.schemas.v1.EXTRACTSPEC parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (org.openehr.schemas.v1.EXTRACTSPEC) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.openehr.schemas.v1.EXTRACTSPEC 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 (org.openehr.schemas.v1.EXTRACTSPEC) 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
}
}