Apache CXF API

org.apache.cxf.binding.corba.wsdl
Class Enum

java.lang.Object
  extended by org.apache.cxf.binding.corba.wsdl.CorbaType
      extended by org.apache.cxf.binding.corba.wsdl.CorbaTypeImpl
          extended by org.apache.cxf.binding.corba.wsdl.NamedType
              extended by org.apache.cxf.binding.corba.wsdl.Enum

public class Enum
extends NamedType

Java class for enum complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="enum">
   <complexContent>
     <extension base="{http://cxf.apache.org/bindings/corba}namedType">
       <sequence>
         <element name="enumerator" type="{http://cxf.apache.org/bindings/corba}enumerator" maxOccurs="unbounded"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 


Field Summary
protected  List<Enumerator> enumerator
           
 
Fields inherited from class org.apache.cxf.binding.corba.wsdl.NamedType
repositoryID
 
Fields inherited from class org.apache.cxf.binding.corba.wsdl.CorbaTypeImpl
name
 
Fields inherited from class org.apache.cxf.binding.corba.wsdl.CorbaType
qualified, type
 
Constructor Summary
Enum()
           
 
Method Summary
 List<Enumerator> getEnumerator()
          Gets the value of the enumerator property.
 boolean isSetEnumerator()
           
 void unsetEnumerator()
           
 
Methods inherited from class org.apache.cxf.binding.corba.wsdl.NamedType
getRepositoryID, isSetRepositoryID, setRepositoryID
 
Methods inherited from class org.apache.cxf.binding.corba.wsdl.CorbaTypeImpl
getQName, isSetQName, setQName
 
Methods inherited from class org.apache.cxf.binding.corba.wsdl.CorbaType
getName, getType, isQualified, isSetName, isSetQualified, isSetType, setName, setQualified, setType, unsetQualified
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

enumerator

protected List<Enumerator> enumerator
Constructor Detail

Enum

public Enum()
Method Detail

getEnumerator

public List<Enumerator> getEnumerator()
Gets the value of the enumerator property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the enumerator property.

For example, to add a new item, do as follows:

    getEnumerator().add(newItem);
 

Objects of the following type(s) are allowed in the list Enumerator


isSetEnumerator

public boolean isSetEnumerator()

unsetEnumerator

public void unsetEnumerator()

Apache CXF API

Apache CXF