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

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

/*
 * XML Type:  C_CODE_PHRASE
 * Namespace: http://schemas.openehr.org/v1
 * Java type: org.openehr.schemas.v1.CCODEPHRASE
 *
 * Automatically generated - do not modify.
 */
package org.openehr.schemas.v1;


/**
 * An XML C_CODE_PHRASE(@http://schemas.openehr.org/v1).
 *
 * This is a complex type.
 */
public interface CCODEPHRASE extends org.openehr.schemas.v1.CDOMAINTYPE
{
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CCODEPHRASE.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sFC518E337EF0A0D40DC82BCD9FB3B054").resolveHandle("ccodephrase71c3type");
    
    /**
     * Gets the "assumed_value" element
     */
    org.openehr.schemas.v1.CODEPHRASE getAssumedValue();
    
    /**
     * True if has "assumed_value" element
     */
    boolean isSetAssumedValue();
    
    /**
     * Sets the "assumed_value" element
     */
    void setAssumedValue(org.openehr.schemas.v1.CODEPHRASE assumedValue);
    
    /**
     * Appends and returns a new empty "assumed_value" element
     */
    org.openehr.schemas.v1.CODEPHRASE addNewAssumedValue();
    
    /**
     * Unsets the "assumed_value" element
     */
    void unsetAssumedValue();
    
    /**
     * Gets the "terminology_id" element
     */
    org.openehr.schemas.v1.TERMINOLOGYID getTerminologyId();
    
    /**
     * True if has "terminology_id" element
     */
    boolean isSetTerminologyId();
    
    /**
     * Sets the "terminology_id" element
     */
    void setTerminologyId(org.openehr.schemas.v1.TERMINOLOGYID terminologyId);
    
    /**
     * Appends and returns a new empty "terminology_id" element
     */
    org.openehr.schemas.v1.TERMINOLOGYID addNewTerminologyId();
    
    /**
     * Unsets the "terminology_id" element
     */
    void unsetTerminologyId();
    
    /**
     * Gets array of all "code_list" elements
     */
    java.lang.String[] getCodeListArray();
    
    /**
     * Gets ith "code_list" element
     */
    java.lang.String getCodeListArray(int i);
    
    /**
     * Gets (as xml) array of all "code_list" elements
     */
    org.apache.xmlbeans.XmlString[] xgetCodeListArray();
    
    /**
     * Gets (as xml) ith "code_list" element
     */
    org.apache.xmlbeans.XmlString xgetCodeListArray(int i);
    
    /**
     * Returns number of "code_list" element
     */
    int sizeOfCodeListArray();
    
    /**
     * Sets array of all "code_list" element
     */
    void setCodeListArray(java.lang.String[] codeListArray);
    
    /**
     * Sets ith "code_list" element
     */
    void setCodeListArray(int i, java.lang.String codeList);
    
    /**
     * Sets (as xml) array of all "code_list" element
     */
    void xsetCodeListArray(org.apache.xmlbeans.XmlString[] codeListArray);
    
    /**
     * Sets (as xml) ith "code_list" element
     */
    void xsetCodeListArray(int i, org.apache.xmlbeans.XmlString codeList);
    
    /**
     * Inserts the value as the ith "code_list" element
     */
    void insertCodeList(int i, java.lang.String codeList);
    
    /**
     * Appends the value as the last "code_list" element
     */
    void addCodeList(java.lang.String codeList);
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "code_list" element
     */
    org.apache.xmlbeans.XmlString insertNewCodeList(int i);
    
    /**
     * Appends and returns a new empty value (as xml) as the last "code_list" element
     */
    org.apache.xmlbeans.XmlString addNewCodeList();
    
    /**
     * Removes the ith "code_list" element
     */
    void removeCodeList(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.CCODEPHRASE newInstance() {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static org.openehr.schemas.v1.CCODEPHRASE parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.CCODEPHRASE) 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.CCODEPHRASE parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
        
        public static org.openehr.schemas.v1.CCODEPHRASE parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static org.openehr.schemas.v1.CCODEPHRASE parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return (org.openehr.schemas.v1.CCODEPHRASE) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        public static org.openehr.schemas.v1.CCODEPHRASE 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.CCODEPHRASE) 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 - 2024 Weber Informatics LLC | Privacy Policy