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.DVMULTIMEDIA Maven / Gradle / Ivy
/*
* XML Type: DV_MULTIMEDIA
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.DVMULTIMEDIA
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1;
/**
* An XML DV_MULTIMEDIA(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public interface DVMULTIMEDIA extends org.openehr.schemas.v1.DVENCAPSULATED
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(DVMULTIMEDIA.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sFC518E337EF0A0D40DC82BCD9FB3B054").resolveHandle("dvmultimedia44cctype");
/**
* Gets the "alternate_text" element
*/
java.lang.String getAlternateText();
/**
* Gets (as xml) the "alternate_text" element
*/
org.apache.xmlbeans.XmlString xgetAlternateText();
/**
* True if has "alternate_text" element
*/
boolean isSetAlternateText();
/**
* Sets the "alternate_text" element
*/
void setAlternateText(java.lang.String alternateText);
/**
* Sets (as xml) the "alternate_text" element
*/
void xsetAlternateText(org.apache.xmlbeans.XmlString alternateText);
/**
* Unsets the "alternate_text" element
*/
void unsetAlternateText();
/**
* Gets the "uri" element
*/
org.openehr.schemas.v1.DVURI getUri();
/**
* True if has "uri" element
*/
boolean isSetUri();
/**
* Sets the "uri" element
*/
void setUri(org.openehr.schemas.v1.DVURI uri);
/**
* Appends and returns a new empty "uri" element
*/
org.openehr.schemas.v1.DVURI addNewUri();
/**
* Unsets the "uri" element
*/
void unsetUri();
/**
* Gets the "data" element
*/
byte[] getData();
/**
* Gets (as xml) the "data" element
*/
org.apache.xmlbeans.XmlBase64Binary xgetData();
/**
* True if has "data" element
*/
boolean isSetData();
/**
* Sets the "data" element
*/
void setData(byte[] data);
/**
* Sets (as xml) the "data" element
*/
void xsetData(org.apache.xmlbeans.XmlBase64Binary data);
/**
* Unsets the "data" element
*/
void unsetData();
/**
* Gets the "media_type" element
*/
org.openehr.schemas.v1.CODEPHRASE getMediaType();
/**
* Sets the "media_type" element
*/
void setMediaType(org.openehr.schemas.v1.CODEPHRASE mediaType);
/**
* Appends and returns a new empty "media_type" element
*/
org.openehr.schemas.v1.CODEPHRASE addNewMediaType();
/**
* Gets the "compression_algorithm" element
*/
org.openehr.schemas.v1.CODEPHRASE getCompressionAlgorithm();
/**
* True if has "compression_algorithm" element
*/
boolean isSetCompressionAlgorithm();
/**
* Sets the "compression_algorithm" element
*/
void setCompressionAlgorithm(org.openehr.schemas.v1.CODEPHRASE compressionAlgorithm);
/**
* Appends and returns a new empty "compression_algorithm" element
*/
org.openehr.schemas.v1.CODEPHRASE addNewCompressionAlgorithm();
/**
* Unsets the "compression_algorithm" element
*/
void unsetCompressionAlgorithm();
/**
* Gets the "integrity_check" element
*/
byte[] getIntegrityCheck();
/**
* Gets (as xml) the "integrity_check" element
*/
org.apache.xmlbeans.XmlBase64Binary xgetIntegrityCheck();
/**
* True if has "integrity_check" element
*/
boolean isSetIntegrityCheck();
/**
* Sets the "integrity_check" element
*/
void setIntegrityCheck(byte[] integrityCheck);
/**
* Sets (as xml) the "integrity_check" element
*/
void xsetIntegrityCheck(org.apache.xmlbeans.XmlBase64Binary integrityCheck);
/**
* Unsets the "integrity_check" element
*/
void unsetIntegrityCheck();
/**
* Gets the "integrity_check_algorithm" element
*/
org.openehr.schemas.v1.CODEPHRASE getIntegrityCheckAlgorithm();
/**
* True if has "integrity_check_algorithm" element
*/
boolean isSetIntegrityCheckAlgorithm();
/**
* Sets the "integrity_check_algorithm" element
*/
void setIntegrityCheckAlgorithm(org.openehr.schemas.v1.CODEPHRASE integrityCheckAlgorithm);
/**
* Appends and returns a new empty "integrity_check_algorithm" element
*/
org.openehr.schemas.v1.CODEPHRASE addNewIntegrityCheckAlgorithm();
/**
* Unsets the "integrity_check_algorithm" element
*/
void unsetIntegrityCheckAlgorithm();
/**
* Gets the "size" element
*/
int getSize();
/**
* Gets (as xml) the "size" element
*/
org.apache.xmlbeans.XmlInt xgetSize();
/**
* Sets the "size" element
*/
void setSize(int size);
/**
* Sets (as xml) the "size" element
*/
void xsetSize(org.apache.xmlbeans.XmlInt size);
/**
* Gets the "thumbnail" element
*/
org.openehr.schemas.v1.DVMULTIMEDIA getThumbnail();
/**
* True if has "thumbnail" element
*/
boolean isSetThumbnail();
/**
* Sets the "thumbnail" element
*/
void setThumbnail(org.openehr.schemas.v1.DVMULTIMEDIA thumbnail);
/**
* Appends and returns a new empty "thumbnail" element
*/
org.openehr.schemas.v1.DVMULTIMEDIA addNewThumbnail();
/**
* Unsets the "thumbnail" element
*/
void unsetThumbnail();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static org.openehr.schemas.v1.DVMULTIMEDIA newInstance() {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA newInstance(org.apache.xmlbeans.XmlOptions options) {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) 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.DVMULTIMEDIA parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.openehr.schemas.v1.DVMULTIMEDIA parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (org.openehr.schemas.v1.DVMULTIMEDIA) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.openehr.schemas.v1.DVMULTIMEDIA 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.DVMULTIMEDIA) 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
}
}