org.openehr.schemas.v1.XVERSIONEDOBJECT 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: X_VERSIONED_OBJECT
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.XVERSIONEDOBJECT
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1;
/**
* An XML X_VERSIONED_OBJECT(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public interface XVERSIONEDOBJECT extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(XVERSIONEDOBJECT.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sADF9D9697439DFAA95C3BAFDA11C5681").resolveHandle("xversionedobjecteed4type");
/**
* Gets the "uid" element
*/
org.openehr.schemas.v1.HIEROBJECTID getUid();
/**
* Sets the "uid" element
*/
void setUid(org.openehr.schemas.v1.HIEROBJECTID uid);
/**
* Appends and returns a new empty "uid" element
*/
org.openehr.schemas.v1.HIEROBJECTID addNewUid();
/**
* Gets the "owner_id" element
*/
org.openehr.schemas.v1.OBJECTREF getOwnerId();
/**
* Sets the "owner_id" element
*/
void setOwnerId(org.openehr.schemas.v1.OBJECTREF ownerId);
/**
* Appends and returns a new empty "owner_id" element
*/
org.openehr.schemas.v1.OBJECTREF addNewOwnerId();
/**
* 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 "total_version_count" element
*/
int getTotalVersionCount();
/**
* Gets (as xml) the "total_version_count" element
*/
org.apache.xmlbeans.XmlInt xgetTotalVersionCount();
/**
* Sets the "total_version_count" element
*/
void setTotalVersionCount(int totalVersionCount);
/**
* Sets (as xml) the "total_version_count" element
*/
void xsetTotalVersionCount(org.apache.xmlbeans.XmlInt totalVersionCount);
/**
* Gets the "extract_version_count" element
*/
int getExtractVersionCount();
/**
* Gets (as xml) the "extract_version_count" element
*/
org.apache.xmlbeans.XmlInt xgetExtractVersionCount();
/**
* Sets the "extract_version_count" element
*/
void setExtractVersionCount(int extractVersionCount);
/**
* Sets (as xml) the "extract_version_count" element
*/
void xsetExtractVersionCount(org.apache.xmlbeans.XmlInt extractVersionCount);
/**
* Gets the "revision_history" element
*/
org.openehr.schemas.v1.REVISIONHISTORY getRevisionHistory();
/**
* True if has "revision_history" element
*/
boolean isSetRevisionHistory();
/**
* Sets the "revision_history" element
*/
void setRevisionHistory(org.openehr.schemas.v1.REVISIONHISTORY revisionHistory);
/**
* Appends and returns a new empty "revision_history" element
*/
org.openehr.schemas.v1.REVISIONHISTORY addNewRevisionHistory();
/**
* Unsets the "revision_history" element
*/
void unsetRevisionHistory();
/**
* Gets array of all "versions" elements
*/
org.openehr.schemas.v1.ORIGINALVERSION[] getVersionsArray();
/**
* Gets ith "versions" element
*/
org.openehr.schemas.v1.ORIGINALVERSION getVersionsArray(int i);
/**
* Returns number of "versions" element
*/
int sizeOfVersionsArray();
/**
* Sets array of all "versions" element
*/
void setVersionsArray(org.openehr.schemas.v1.ORIGINALVERSION[] versionsArray);
/**
* Sets ith "versions" element
*/
void setVersionsArray(int i, org.openehr.schemas.v1.ORIGINALVERSION versions);
/**
* Inserts and returns a new empty value (as xml) as the ith "versions" element
*/
org.openehr.schemas.v1.ORIGINALVERSION insertNewVersions(int i);
/**
* Appends and returns a new empty value (as xml) as the last "versions" element
*/
org.openehr.schemas.v1.ORIGINALVERSION addNewVersions();
/**
* Removes the ith "versions" element
*/
void removeVersions(int i);
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static org.openehr.schemas.v1.XVERSIONEDOBJECT newInstance() {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT newInstance(org.apache.xmlbeans.XmlOptions options) {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) 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.XVERSIONEDOBJECT parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.openehr.schemas.v1.XVERSIONEDOBJECT parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (org.openehr.schemas.v1.XVERSIONEDOBJECT) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.openehr.schemas.v1.XVERSIONEDOBJECT 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.XVERSIONEDOBJECT) 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
}
}