All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openehr.schemas.v1.TRANSLATIONDETAILS Maven / Gradle / Ivy

The newest version!
/*
 * XML Type:  TRANSLATION_DETAILS
 * Namespace: http://schemas.openehr.org/v1
 * Java type: org.openehr.schemas.v1.TRANSLATIONDETAILS
 *
 * Automatically generated - do not modify.
 */
package org.openehr.schemas.v1;


/**
 * An XML TRANSLATION_DETAILS(@http://schemas.openehr.org/v1).
 *
 * This is a complex type.
 */
public interface TRANSLATIONDETAILS extends org.apache.xmlbeans.XmlObject
{
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TRANSLATIONDETAILS.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sFC518E337EF0A0D40DC82BCD9FB3B054").resolveHandle("translationdetails30e8type");
    
    /**
     * Gets the "language" element
     */
    org.openehr.schemas.v1.CODEPHRASE getLanguage();
    
    /**
     * Sets the "language" element
     */
    void setLanguage(org.openehr.schemas.v1.CODEPHRASE language);
    
    /**
     * Appends and returns a new empty "language" element
     */
    org.openehr.schemas.v1.CODEPHRASE addNewLanguage();
    
    /**
     * Gets array of all "author" elements
     */
    org.openehr.schemas.v1.StringDictionaryItem[] getAuthorArray();
    
    /**
     * Gets ith "author" element
     */
    org.openehr.schemas.v1.StringDictionaryItem getAuthorArray(int i);
    
    /**
     * Returns number of "author" element
     */
    int sizeOfAuthorArray();
    
    /**
     * Sets array of all "author" element
     */
    void setAuthorArray(org.openehr.schemas.v1.StringDictionaryItem[] authorArray);
    
    /**
     * Sets ith "author" element
     */
    void setAuthorArray(int i, org.openehr.schemas.v1.StringDictionaryItem author);
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "author" element
     */
    org.openehr.schemas.v1.StringDictionaryItem insertNewAuthor(int i);
    
    /**
     * Appends and returns a new empty value (as xml) as the last "author" element
     */
    org.openehr.schemas.v1.StringDictionaryItem addNewAuthor();
    
    /**
     * Removes the ith "author" element
     */
    void removeAuthor(int i);
    
    /**
     * Gets the "accreditation" element
     */
    java.lang.String getAccreditation();
    
    /**
     * Gets (as xml) the "accreditation" element
     */
    org.apache.xmlbeans.XmlString xgetAccreditation();
    
    /**
     * True if has "accreditation" element
     */
    boolean isSetAccreditation();
    
    /**
     * Sets the "accreditation" element
     */
    void setAccreditation(java.lang.String accreditation);
    
    /**
     * Sets (as xml) the "accreditation" element
     */
    void xsetAccreditation(org.apache.xmlbeans.XmlString accreditation);
    
    /**
     * Unsets the "accreditation" element
     */
    void unsetAccreditation();
    
    /**
     * Gets array of all "other_details" elements
     */
    org.openehr.schemas.v1.StringDictionaryItem[] getOtherDetailsArray();
    
    /**
     * Gets ith "other_details" element
     */
    org.openehr.schemas.v1.StringDictionaryItem getOtherDetailsArray(int i);
    
    /**
     * Returns number of "other_details" element
     */
    int sizeOfOtherDetailsArray();
    
    /**
     * Sets array of all "other_details" element
     */
    void setOtherDetailsArray(org.openehr.schemas.v1.StringDictionaryItem[] otherDetailsArray);
    
    /**
     * Sets ith "other_details" element
     */
    void setOtherDetailsArray(int i, org.openehr.schemas.v1.StringDictionaryItem otherDetails);
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "other_details" element
     */
    org.openehr.schemas.v1.StringDictionaryItem insertNewOtherDetails(int i);
    
    /**
     * Appends and returns a new empty value (as xml) as the last "other_details" element
     */
    org.openehr.schemas.v1.StringDictionaryItem addNewOtherDetails();
    
    /**
     * Removes the ith "other_details" element
     */
    void removeOtherDetails(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.TRANSLATIONDETAILS newInstance() {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) 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.TRANSLATIONDETAILS parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
        
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return (org.openehr.schemas.v1.TRANSLATIONDETAILS) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static org.openehr.schemas.v1.TRANSLATIONDETAILS 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.TRANSLATIONDETAILS) 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
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy