Package | Description |
---|---|
com.tangosol.net |
Contains basic cluster interfaces and factories.
|
com.tangosol.run.xml |
Contains classes providing basic XML related functionality.
|
Modifier and Type | Method | Description |
---|---|---|
protected double |
DefaultConfigurableCacheFactory.convertDouble(XmlValue xmlValue)
Deprecated.
Convert the value in the specified
XmlValue to a double. |
|
protected int |
DefaultConfigurableCacheFactory.convertInt(XmlValue xmlValue)
Deprecated.
Convert the value in the specified
XmlValue to an int. |
|
protected int |
DefaultConfigurableCacheFactory.convertInt(XmlValue xmlValue,
int nDefault)
Deprecated.
Convert the value in the specified
XmlValue to an int. |
|
protected long |
DefaultConfigurableCacheFactory.convertLong(XmlValue xmlValue)
Deprecated.
Convert the value in the specified
XmlValue to a long. |
|
protected void |
DefaultConfigurableCacheFactory.reportConversionError(XmlValue xmlValue,
String sType,
String sDefault,
RuntimeException e)
Deprecated.
Log a failed type conversion.
|
Modifier and Type | Interface | Description |
---|---|---|
interface |
XmlDocument
An interface for XML document access.
|
|
interface |
XmlElement
An interface for XML element access.
|
Modifier and Type | Class | Description |
---|---|---|
class |
SimpleDocument
A simple implementation of the XmlElement interface.
|
|
class |
SimpleElement
A simple implementation of the XmlElement interface.
|
|
class |
SimpleValue
A simple implementation of the XmlValue interface.
|
Modifier and Type | Method | Description |
---|---|---|
XmlValue |
XmlElement.addAttribute(String sName)
Provides a means to add a new attribute value.
|
|
XmlValue |
SimpleElement.addAttribute(String sName)
Provides a means to add a new attribute value.
|
|
XmlValue |
PropertyAdapter.findAttribute(XmlElement xml)
Find an attribute of the specified XmlElement that represents
a value for a property represented by this adapter.
|
|
XmlValue |
XmlElement.getAttribute(String sName)
Get an attribute value.
|
|
XmlValue |
SimpleElement.getAttribute(String sName)
Get an attribute value.
|
|
static XmlValue |
XmlHelper.getAttribute(XmlElement xml,
String sLocal,
String sUri)
Get an attribute of the specified XmlElement that matches
to the specified local name and the specified Namespace URI.
|
|
XmlValue |
XmlElement.getSafeAttribute(String sName)
Get an attribute value, and return a temporary value if the attribute
does not exist.
|
|
XmlValue |
SimpleElement.getSafeAttribute(String sName)
Get an attribute value, and return a temporary value if the attribute
does not exist.
|
|
XmlValue |
SimpleAttribute.getXmlValue()
Return the
XmlValue defined by the XmlAttribute . |
|
XmlValue |
XmlAttribute.getXmlValue()
Get the
XmlValue defined by thge XmlAttribute . |
|
protected XmlValue |
SimpleElement.instantiateAttribute()
Instantiate an XmlValue implementation for an attribute value.
|
Modifier and Type | Method | Description |
---|---|---|
static boolean |
XmlHelper.equalsValue(XmlValue val1,
XmlValue val2)
Compare one XML value with another XML value for equality.
|
|
static int |
XmlHelper.hashValue(XmlValue val)
Provide a hash value for the XML value.
|
|
void |
XmlElement.setAttribute(String sName,
XmlValue val)
Set an attribute value.
|
|
void |
SimpleElement.setAttribute(String sName,
XmlValue val)
Set an attribute value.
|
Constructor | Description |
---|---|
SimpleAttribute(XmlElement xmlElement,
String sName,
XmlValue xmlValue)
Standard Constructor.
|