Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.openehr.schemas.v1.EXTRACT Maven / Gradle / Ivy
/*
* XML Type: EXTRACT
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.EXTRACT
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1;
/**
* An XML EXTRACT(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public interface EXTRACT extends org.openehr.schemas.v1.LOCATABLE
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(EXTRACT.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sFC518E337EF0A0D40DC82BCD9FB3B054").resolveHandle("extractcc95type");
/**
* Gets the "request_id" element
*/
org.openehr.schemas.v1.OBJECTREF getRequestId();
/**
* True if has "request_id" element
*/
boolean isSetRequestId();
/**
* Sets the "request_id" element
*/
void setRequestId(org.openehr.schemas.v1.OBJECTREF requestId);
/**
* Appends and returns a new empty "request_id" element
*/
org.openehr.schemas.v1.OBJECTREF addNewRequestId();
/**
* Unsets the "request_id" element
*/
void unsetRequestId();
/**
* Gets the "time_created" element
*/
org.openehr.schemas.v1.DVDATETIME getTimeCreated();
/**
* Sets the "time_created" element
*/
void setTimeCreated(org.openehr.schemas.v1.DVDATETIME timeCreated);
/**
* Appends and returns a new empty "time_created" element
*/
org.openehr.schemas.v1.DVDATETIME addNewTimeCreated();
/**
* Gets the "system_id" element
*/
org.openehr.schemas.v1.HIEROBJECTID getSystemId();
/**
* Sets the "system_id" element
*/
void setSystemId(org.openehr.schemas.v1.HIEROBJECTID systemId);
/**
* Appends and returns a new empty "system_id" element
*/
org.openehr.schemas.v1.HIEROBJECTID addNewSystemId();
/**
* Gets array of all "participations" elements
*/
org.openehr.schemas.v1.PARTICIPATION[] getParticipationsArray();
/**
* Gets ith "participations" element
*/
org.openehr.schemas.v1.PARTICIPATION getParticipationsArray(int i);
/**
* Returns number of "participations" element
*/
int sizeOfParticipationsArray();
/**
* Sets array of all "participations" element
*/
void setParticipationsArray(org.openehr.schemas.v1.PARTICIPATION[] participationsArray);
/**
* Sets ith "participations" element
*/
void setParticipationsArray(int i, org.openehr.schemas.v1.PARTICIPATION participations);
/**
* Inserts and returns a new empty value (as xml) as the ith "participations" element
*/
org.openehr.schemas.v1.PARTICIPATION insertNewParticipations(int i);
/**
* Appends and returns a new empty value (as xml) as the last "participations" element
*/
org.openehr.schemas.v1.PARTICIPATION addNewParticipations();
/**
* Removes the ith "participations" element
*/
void removeParticipations(int i);
/**
* Gets the "sequence_nr" element
*/
long getSequenceNr();
/**
* Gets (as xml) the "sequence_nr" element
*/
org.apache.xmlbeans.XmlLong xgetSequenceNr();
/**
* Sets the "sequence_nr" element
*/
void setSequenceNr(long sequenceNr);
/**
* Sets (as xml) the "sequence_nr" element
*/
void xsetSequenceNr(org.apache.xmlbeans.XmlLong sequenceNr);
/**
* Gets array of all "chapters" elements
*/
org.openehr.schemas.v1.EXTRACTCHAPTER[] getChaptersArray();
/**
* Gets ith "chapters" element
*/
org.openehr.schemas.v1.EXTRACTCHAPTER getChaptersArray(int i);
/**
* Returns number of "chapters" element
*/
int sizeOfChaptersArray();
/**
* Sets array of all "chapters" element
*/
void setChaptersArray(org.openehr.schemas.v1.EXTRACTCHAPTER[] chaptersArray);
/**
* Sets ith "chapters" element
*/
void setChaptersArray(int i, org.openehr.schemas.v1.EXTRACTCHAPTER chapters);
/**
* Inserts and returns a new empty value (as xml) as the ith "chapters" element
*/
org.openehr.schemas.v1.EXTRACTCHAPTER insertNewChapters(int i);
/**
* Appends and returns a new empty value (as xml) as the last "chapters" element
*/
org.openehr.schemas.v1.EXTRACTCHAPTER addNewChapters();
/**
* Removes the ith "chapters" element
*/
void removeChapters(int i);
/**
* Gets the "specification" element
*/
org.openehr.schemas.v1.EXTRACTSPEC getSpecification();
/**
* True if has "specification" element
*/
boolean isSetSpecification();
/**
* Sets the "specification" element
*/
void setSpecification(org.openehr.schemas.v1.EXTRACTSPEC specification);
/**
* Appends and returns a new empty "specification" element
*/
org.openehr.schemas.v1.EXTRACTSPEC addNewSpecification();
/**
* Unsets the "specification" element
*/
void unsetSpecification();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static org.openehr.schemas.v1.EXTRACT newInstance() {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static org.openehr.schemas.v1.EXTRACT newInstance(org.apache.xmlbeans.XmlOptions options) {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static org.openehr.schemas.v1.EXTRACT parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static org.openehr.schemas.v1.EXTRACT parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACT) 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.EXTRACT parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static org.openehr.schemas.v1.EXTRACT parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static org.openehr.schemas.v1.EXTRACT parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static org.openehr.schemas.v1.EXTRACT parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static org.openehr.schemas.v1.EXTRACT parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static org.openehr.schemas.v1.EXTRACT parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static org.openehr.schemas.v1.EXTRACT parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static org.openehr.schemas.v1.EXTRACT parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static org.openehr.schemas.v1.EXTRACT parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static org.openehr.schemas.v1.EXTRACT parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static org.openehr.schemas.v1.EXTRACT parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static org.openehr.schemas.v1.EXTRACT parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.openehr.schemas.v1.EXTRACT parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (org.openehr.schemas.v1.EXTRACT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.openehr.schemas.v1.EXTRACT 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.EXTRACT) 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
}
}