Uses of Interface
com.tangosol.run.xml.XmlValue
-
Packages that use XmlValue Package Description com.tangosol.config.expression Defines classes and interfaces for representing and evaluating expressions.com.tangosol.net Contains basic cluster interfaces and factories.com.tangosol.net.ssl Contains interfaces and classes related to custom SSL certificate and key store loaders.com.tangosol.run.xml Contains classes providing basic XML related functionality. -
-
Uses of XmlValue in com.tangosol.config.expression
Constructors in com.tangosol.config.expression with parameters of type XmlValue Constructor Description Value(XmlValue value)
-
Uses of XmlValue in com.tangosol.net
Methods in com.tangosol.net with parameters of type XmlValue Modifier and Type Method Description protected double
DefaultConfigurableCacheFactory. convertDouble(XmlValue xmlValue)
Deprecated.Convert the value in the specifiedXmlValue
to a double.protected int
DefaultConfigurableCacheFactory. convertInt(XmlValue xmlValue)
Deprecated.Convert the value in the specifiedXmlValue
to an int.protected int
DefaultConfigurableCacheFactory. convertInt(XmlValue xmlValue, int nDefault)
Deprecated.Convert the value in the specifiedXmlValue
to an int.protected long
DefaultConfigurableCacheFactory. convertLong(XmlValue xmlValue)
Deprecated.Convert the value in the specifiedXmlValue
to a long.protected void
DefaultConfigurableCacheFactory. reportConversionError(XmlValue xmlValue, String sType, String sDefault, RuntimeException e)
Deprecated.Log a failed type conversion. -
Uses of XmlValue in com.tangosol.net.ssl
Constructors in com.tangosol.net.ssl with parameters of type XmlValue Constructor Description URLCertificateLoader(XmlValue xml)
Create aURLCertificateLoader
.URLKeyStoreLoader(XmlValue xml)
Create aURLKeyStoreLoader
.URLPrivateKeyLoader(XmlValue xml)
Create aURLPrivateKeyLoader
. -
Uses of XmlValue in com.tangosol.run.xml
Subinterfaces of XmlValue in com.tangosol.run.xml Modifier and Type Interface Description interface
XmlDocument
An interface for XML document access.interface
XmlElement
An interface for XML element access.Classes in com.tangosol.run.xml that implement XmlValue 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.Methods in com.tangosol.run.xml that return XmlValue Modifier and Type Method Description XmlValue
SimpleElement. addAttribute(String sName)
Provides a means to add a new attribute value.XmlValue
XmlElement. 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
SimpleElement. getAttribute(String sName)
Get an attribute value.XmlValue
XmlElement. 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
SimpleElement. getSafeAttribute(String sName)
Get an attribute value, and return a temporary value if the attribute does not exist.XmlValue
XmlElement. getSafeAttribute(String sName)
Get an attribute value, and return a temporary value if the attribute does not exist.XmlValue
SimpleAttribute. getXmlValue()
Return theXmlValue
defined by theXmlAttribute
.XmlValue
XmlAttribute. getXmlValue()
Get theXmlValue
defined by thgeXmlAttribute
.protected XmlValue
SimpleElement. instantiateAttribute()
Instantiate an XmlValue implementation for an attribute value.Methods in com.tangosol.run.xml with parameters of type XmlValue 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
SimpleElement. setAttribute(String sName, XmlValue val)
Set an attribute value.void
XmlElement. setAttribute(String sName, XmlValue val)
Set an attribute value.Constructors in com.tangosol.run.xml with parameters of type XmlValue Constructor Description SimpleAttribute(XmlElement xmlElement, String sName, XmlValue xmlValue)
Standard Constructor.
-