public class Type extends Object
Java class for Type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Type">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="baseType" type="{commonj.sdo}URI" maxOccurs="unbounded" minOccurs="0"/>
<element name="property" type="{commonj.sdo}Property" maxOccurs="unbounded" minOccurs="0"/>
<element name="aliasName" type="{commonj.sdo}String" maxOccurs="unbounded" minOccurs="0"/>
<any/>
</sequence>
<attribute name="name" type="{http://www.w3.org/2001/XMLSchema}ID" />
<attribute name="uri" type="{commonj.sdo}URI" />
<attribute name="dataType" type="{commonj.sdo}Boolean" />
<attribute name="open" type="{commonj.sdo}Boolean" />
<attribute name="sequenced" type="{commonj.sdo}Boolean" />
<attribute name="abstract" type="{commonj.sdo}Boolean" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected Boolean |
_abstract |
protected List<String> |
aliasNames |
protected List<Element> |
anies |
protected List<String> |
baseTypes |
protected Boolean |
dataType |
protected String |
name |
protected Boolean |
open |
protected List<Property> |
properties |
protected Boolean |
sequenced |
protected String |
uri |
| Constructor and Description |
|---|
Type() |
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getAliasNames()
Gets the value of the aliasNames property.
|
List<Element> |
getAnies()
Gets the value of the anies property.
|
List<String> |
getBaseTypes()
Gets the value of the baseTypes property.
|
String |
getName()
Gets the value of the name property.
|
Map<QName,String> |
getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property
on this class.
|
List<Property> |
getProperties()
Gets the value of the properties property.
|
String |
getUri()
Gets the value of the uri property.
|
Boolean |
isAbstract()
Gets the value of the abstract property.
|
Boolean |
isDataType()
Gets the value of the dataType property.
|
Boolean |
isOpen()
Gets the value of the open property.
|
Boolean |
isSequenced()
Gets the value of the sequenced property.
|
void |
setAbstract(Boolean value)
Sets the value of the abstract property.
|
void |
setDataType(Boolean value)
Sets the value of the dataType property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setOpen(Boolean value)
Sets the value of the open property.
|
void |
setSequenced(Boolean value)
Sets the value of the sequenced property.
|
void |
setUri(String value)
Sets the value of the uri property.
|
protected String name
protected String uri
protected Boolean dataType
protected Boolean open
protected Boolean sequenced
protected Boolean _abstract
public List<String> getBaseTypes()
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 baseTypes property.
For example, to add a new item, do as follows:
getBaseTypes().add(newItem);
Objects of the following type(s) are allowed in the list String
public List<Property> getProperties()
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 properties property.
For example, to add a new item, do as follows:
getProperties().add(newItem);
Objects of the following type(s) are allowed in the list Property
public List<String> getAliasNames()
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 aliasNames property.
For example, to add a new item, do as follows:
getAliasNames().add(newItem);
Objects of the following type(s) are allowed in the list String
public List<Element> getAnies()
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 anies property.
For example, to add a new item, do as follows:
getAnies().add(newItem);
Objects of the following type(s) are allowed in the list Element
public String getName()
Stringpublic void setName(String value)
value - allowed object is Stringpublic String getUri()
Stringpublic void setUri(String value)
value - allowed object is Stringpublic Boolean isDataType()
Booleanpublic void setDataType(Boolean value)
value - allowed object is Booleanpublic Boolean isOpen()
Booleanpublic void setOpen(Boolean value)
value - allowed object is Booleanpublic Boolean isSequenced()
Booleanpublic void setSequenced(Boolean value)
value - allowed object is Booleanpublic Boolean isAbstract()
Booleanpublic void setAbstract(Boolean value)
value - allowed object is Booleanpublic Map<QName,String> getOtherAttributes()
the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.
Copyright © 2019. All rights reserved.