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

org.etsi.uri.x01903.v13.impl.ClaimedRolesListTypeImpl Maven / Gradle / Ivy

Go to download

XmlBeans generated from the Ecma supplied xsds (since POI 5.0.0, the 5th edition is used): https://www.ecma-international.org/publications/standards/Ecma-376.htm

There is a newer version: 5.2.5
Show newest version
/*
 * XML Type:  ClaimedRolesListType
 * Namespace: http://uri.etsi.org/01903/v1.3.2#
 * Java type: org.etsi.uri.x01903.v13.ClaimedRolesListType
 *
 * Automatically generated - do not modify.
 */
package org.etsi.uri.x01903.v13.impl;
/**
 * An XML ClaimedRolesListType(@http://uri.etsi.org/01903/v1.3.2#).
 *
 * This is a complex type.
 */
public class ClaimedRolesListTypeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.etsi.uri.x01903.v13.ClaimedRolesListType {
    private static final long serialVersionUID = 1L;
    
    public ClaimedRolesListTypeImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName CLAIMEDROLE$0 = 
        new javax.xml.namespace.QName("http://uri.etsi.org/01903/v1.3.2#", "ClaimedRole");
    
    
    /**
     * Gets a List of "ClaimedRole" elements
     */
    public java.util.List getClaimedRoleList() {
        final class ClaimedRoleList extends java.util.AbstractList {
            @Override
            public org.etsi.uri.x01903.v13.AnyType get(int i)
                { return ClaimedRolesListTypeImpl.this.getClaimedRoleArray(i); }
            
            @Override
            public org.etsi.uri.x01903.v13.AnyType set(int i, org.etsi.uri.x01903.v13.AnyType o) {
                org.etsi.uri.x01903.v13.AnyType old = ClaimedRolesListTypeImpl.this.getClaimedRoleArray(i);
                ClaimedRolesListTypeImpl.this.setClaimedRoleArray(i, o);
                return old;
            }
            
            @Override
            public void add(int i, org.etsi.uri.x01903.v13.AnyType o)
                { ClaimedRolesListTypeImpl.this.insertNewClaimedRole(i).set(o); }
            
            @Override
            public org.etsi.uri.x01903.v13.AnyType remove(int i) {
                org.etsi.uri.x01903.v13.AnyType old = ClaimedRolesListTypeImpl.this.getClaimedRoleArray(i);
                ClaimedRolesListTypeImpl.this.removeClaimedRole(i);
                return old;
            }
            
            @Override
            public int size()
                { return ClaimedRolesListTypeImpl.this.sizeOfClaimedRoleArray(); }
            
        }
        
        synchronized (monitor())
        {
            check_orphaned();
            return new ClaimedRoleList();
        }
    }
    
    /**
     * Gets array of all "ClaimedRole" elements
     */
    public org.etsi.uri.x01903.v13.AnyType[] getClaimedRoleArray() {
        return getXmlObjectArray(CLAIMEDROLE$0, new org.etsi.uri.x01903.v13.AnyType[0]);
    }
    
    /**
     * Gets ith "ClaimedRole" element
     */
    public org.etsi.uri.x01903.v13.AnyType getClaimedRoleArray(int i) {
        synchronized (monitor())
        {
            check_orphaned();
            org.etsi.uri.x01903.v13.AnyType target = null;
            target = (org.etsi.uri.x01903.v13.AnyType)get_store().find_element_user(CLAIMEDROLE$0, i);
            if (target == null) {
                throw new IndexOutOfBoundsException();
            }
            return target;
        }
    }
    
    /**
     * Returns number of "ClaimedRole" element
     */
    public int sizeOfClaimedRoleArray() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(CLAIMEDROLE$0);
        }
    }
    
    /**
     * Sets array of all "ClaimedRole" element  WARNING: This method is not atomicaly synchronized.
     */
    public void setClaimedRoleArray(org.etsi.uri.x01903.v13.AnyType[] claimedRoleArray) {
        check_orphaned();
        arraySetterHelper(claimedRoleArray, CLAIMEDROLE$0);
    }
    
    /**
     * Sets ith "ClaimedRole" element
     */
    public void setClaimedRoleArray(int i, org.etsi.uri.x01903.v13.AnyType claimedRole) {
        generatedSetterHelperImpl(claimedRole, CLAIMEDROLE$0, i, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_ARRAYITEM);
    }
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "ClaimedRole" element
     */
    public org.etsi.uri.x01903.v13.AnyType insertNewClaimedRole(int i) {
        synchronized (monitor())
        {
            check_orphaned();
            org.etsi.uri.x01903.v13.AnyType target = null;
            target = (org.etsi.uri.x01903.v13.AnyType)get_store().insert_element_user(CLAIMEDROLE$0, i);
            return target;
        }
    }
    
    /**
     * Appends and returns a new empty value (as xml) as the last "ClaimedRole" element
     */
    public org.etsi.uri.x01903.v13.AnyType addNewClaimedRole() {
        synchronized (monitor())
        {
            check_orphaned();
            org.etsi.uri.x01903.v13.AnyType target = null;
            target = (org.etsi.uri.x01903.v13.AnyType)get_store().add_element_user(CLAIMEDROLE$0);
            return target;
        }
    }
    
    /**
     * Removes the ith "ClaimedRole" element
     */
    public void removeClaimedRole(int i) {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(CLAIMEDROLE$0, i);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy