An XML addressType(@http://xmlbeans.apache.org/samples/xquery/employees).
This is a complex type.
Methods from org.apache.xmlbeans.impl.values.XmlObjectBase: |
---|
_copy, _copy, _isComplexContent, _isComplexType, _set, _validateOnSet, attach_store, bigDecimalValue, bigIntegerValue, booleanValue, buildInnerPrettyOptions, build_nil, build_text, byteArrayValue, byteValue, calendarValue, changeType, check_dated, check_orphaned, compareTo, compareValue, compare_to, compute_text, copy, create_attribute_user, create_element_user, dateValue, disconnect_store, documentProperties, doubleValue, dump, elementFlags, enumValue, equal_to, equals, execQuery, execQuery, floatValue, gDateValue, gDurationValue, generatedSetterHelperImpl, getBigDecimalValue, getBigIntegerValue, getBooleanValue, getByteArrayValue, getByteValue, getCalendarValue, getDateValue, getDomNode, getDoubleValue, getEnumValue, getFloatValue, getGDateValue, getGDurationValue, getIntValue, getListValue, getLongValue, getObjectValue, getQNameValue, getShortValue, getStringValue, getXmlLocale, get_attribute_field, get_attribute_type, get_attributeflags, get_default_attribute_text, get_default_attribute_value, get_default_element_text, get_element_ending_delimiters, get_element_type, get_elementflags, get_schema_type, get_store, get_wscanon_rule, get_wscanon_text, has_store, hashCode, initComplexType, init_flags, instanceType, intValue, invalidate_element_order, invalidate_nilvalue, invalidate_value, isDefault, isDefaultable, isFixed, isImmutable, isInstanceOf, isNil, isNillable, is_child_element_order_sensitive, is_defaultable_ws, is_orphaned, java_value, listValue, longValue, monitor, newCursor, newCursorForce, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, new_visitor, objectSet, objectValue, qNameValue, save, save, save, save, save, save, save, save, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, set, set, set, set, set, set, set, set, set, set, set, set, set, set, set, set, set, set, setBigDecimalValue, setBigIntegerValue, setBooleanValue, setByteArrayValue, setByteValue, setCalendarValue, setDateValue, setDoubleValue, setEnumValue, setFloatValue, setGDateValue, setGDateValue, setGDurationValue, setGDurationValue, setImmutable, setIntValue, setListValue, setLongValue, setNil, setObjectValue, setQNameValue, setShortValue, setStringValue, setValidateOnSet, set_BigDecimal, set_BigInteger, set_ByteArray, set_Calendar, set_ComplexXml, set_Date, set_GDate, set_GDuration, set_QName, set_String, set_b64, set_boolean, set_byte, set_char, set_double, set_enum, set_float, set_hex, set_int, set_list, set_long, set_newValue, set_nil, set_notation, set_short, set_text, set_xmlanysimple, shortValue, stringValue, substitute, toString, update_from_complex_content, uses_invalidate_value, validate, validate, validate_now, validate_simpleval, valueEquals, valueHashCode, value_hash_code, writeReplace, xgetListValue, xlistValue, xmlText, xmlText |
Method from org.apache.xmlbeans.samples.xquery.employees.impl.AddressTypeImpl Detail: |
public String getCity() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CITY$2, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
|
public String getLocation() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(LOCATION$8);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
Gets the "location" attribute |
public String getState() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(STATE$4, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
|
public String getStreet() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(STREET$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
Gets the "street" element |
public BigInteger getZip() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ZIP$6, 0);
if (target == null)
{
return null;
}
return target.getBigIntegerValue();
}
}
|
public void setCity(String city) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CITY$2, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CITY$2);
}
target.setStringValue(city);
}
}
|
public void setLocation(String location) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(LOCATION$8);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(LOCATION$8);
}
target.setStringValue(location);
}
}
Sets the "location" attribute |
public void setState(String state) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(STATE$4, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(STATE$4);
}
target.setStringValue(state);
}
}
|
public void setStreet(String street) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(STREET$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(STREET$0);
}
target.setStringValue(street);
}
}
Sets the "street" element |
public void setZip(BigInteger zip) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ZIP$6, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(ZIP$6);
}
target.setBigIntegerValue(zip);
}
}
|
public XmlNCName xgetCity() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_element_user(CITY$2, 0);
return target;
}
}
Gets (as xml) the "city" element |
public XmlNCName xgetLocation() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(LOCATION$8);
return target;
}
}
Gets (as xml) the "location" attribute |
public XmlNCName xgetState() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_element_user(STATE$4, 0);
return target;
}
}
Gets (as xml) the "state" element |
public XmlString xgetStreet() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(STREET$0, 0);
return target;
}
}
Gets (as xml) the "street" element |
public XmlInteger xgetZip() {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlInteger target = null;
target = (org.apache.xmlbeans.XmlInteger)get_store().find_element_user(ZIP$6, 0);
return target;
}
}
Gets (as xml) the "zip" element |
public void xsetCity(XmlNCName city) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_element_user(CITY$2, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_element_user(CITY$2);
}
target.set(city);
}
}
Sets (as xml) the "city" element |
public void xsetLocation(XmlNCName location) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(LOCATION$8);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(LOCATION$8);
}
target.set(location);
}
}
Sets (as xml) the "location" attribute |
public void xsetState(XmlNCName state) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_element_user(STATE$4, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_element_user(STATE$4);
}
target.set(state);
}
}
Sets (as xml) the "state" element |
public void xsetStreet(XmlString street) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(STREET$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(STREET$0);
}
target.set(street);
}
}
Sets (as xml) the "street" element |
public void xsetZip(XmlInteger zip) {
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlInteger target = null;
target = (org.apache.xmlbeans.XmlInteger)get_store().find_element_user(ZIP$6, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlInteger)get_store().add_element_user(ZIP$6);
}
target.set(zip);
}
}
Sets (as xml) the "zip" element |