|
Oracle® Fusion Middleware Java API Reference for Oracle Coherence 12c (12.1.3.0.0) E47890-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
com.tangosol.util.Base
com.tangosol.util.BitHelper
com.tangosol.util.ExternalizableHelper
com.tangosol.run.xml.PropertyAdapter
com.tangosol.run.xml.IterableAdapter
com.tangosol.run.xml.PrimitiveArrayAdapter
public abstract class PrimitiveArrayAdapter
A PrimitiveArrayAdapter supports arrays of primitive types, such as "int", "char", etc.
| Nested Class Summary | |
|---|---|
static class |
PrimitiveArrayAdapter.BooleanArrayAdapterA PropertyAdapter supporting boolean[]. |
static class |
PrimitiveArrayAdapter.ByteArrayAdapterA PropertyAdapter supporting byte[]. |
static class |
PrimitiveArrayAdapter.CharArrayAdapterA PropertyAdapter supporting char[]. |
static class |
PrimitiveArrayAdapter.DoubleArrayAdapterA PropertyAdapter supporting double[]. |
static class |
PrimitiveArrayAdapter.FloatArrayAdapterA PropertyAdapter supporting float[]. |
static class |
PrimitiveArrayAdapter.IntArrayAdapterA PropertyAdapter supporting int[]. |
static class |
PrimitiveArrayAdapter.LongArrayAdapterA PropertyAdapter supporting long[]. |
static class |
PrimitiveArrayAdapter.ShortArrayAdapterA PropertyAdapter supporting short[]. |
| Field Summary |
|---|
| Fields inherited from class com.tangosol.run.xml.IterableAdapter |
|---|
m_fEmptyIsNull, m_fSparse, m_sElement |
| Fields inherited from class com.tangosol.run.xml.PropertyAdapter |
|---|
m_clzType, m_fAttribute, m_infoBean, m_methodClone, m_methodGet, m_methodSet, m_sName, m_sNmsPrefix, m_sNmsUri, m_sXml, NOPARAMS |
| Constructor Summary | |
|---|---|
PrimitiveArrayAdapter(XmlBean.BeanInfo infoBean, java.lang.Class clzType, java.lang.String sName, java.lang.String sXml, XmlElement xml)Construct a PrimitiveArrayAdapter. |
|
| Method Summary | |
|---|---|
abstract java.lang.Object |
clone(java.lang.Object o)Make a clone of the passed object. |
abstract boolean |
equalsValue(java.lang.Object o1, java.lang.Object o2)Compare the two passed objects for equality. |
java.lang.Object |
fromXml(XmlElement xml)Deserialize an object from an XML element. |
java.lang.Object |
fromXmlString(XmlElement xml)Deserialize a primitive array from a single XML element. |
abstract int |
hash(java.lang.Object o)Compute a hash code for the passed object. |
boolean |
isStringable() |
abstract java.lang.Object |
readArray(java.util.Iterator iter, XmlElement xml, boolean fNested)Read an array of primitive values. |
protected java.lang.Object |
readElements(XmlElement xml) |
abstract java.lang.Object |
readSparseArray(java.util.Iterator iter, int c)Read a sparse array of primitive values. |
java.lang.Object |
readXml(XmlElement xml)Deserialize an object from XML. |
XmlElement |
toXml(java.lang.Object o)Serialize an object into an XML element. |
XmlElement |
toXmlString(java.lang.Object o)Serialize a primitive array into a single XML element. |
abstract void |
writeArray(XmlElement xml, java.lang.Object o, java.lang.String sElement)Write a sparse array of primitive values. |
protected void |
writeElements(XmlElement xml, java.lang.Object o) |
abstract void |
writeSparseArray(XmlElement xml, java.lang.Object o, java.lang.String sElement)Write a sparse array of primitive values. |
void |
writeXml(XmlElement xml, java.lang.Object o)Serialize an object into an XML element. |
| Methods inherited from class com.tangosol.run.xml.IterableAdapter |
|---|
findAdapter, getElementName, isCloneRequired, isEmptyIsNull, isNested, isSparse |
| Methods inherited from class com.tangosol.run.xml.PropertyAdapter |
|---|
findAttribute, findElement, fromUri, get, getAccessor, getBeanInfo, getCloner, getElements, getLocalXmlName, getMutator, getName, getNamespacePrefix, getNamespaceUri, getType, getXmlName, isAnonymous, isAttribute, isElementMatch, isEmpty, readExternal, set, setNamespacePrefix, toString, toUri, writeExternal |
| Methods inherited from class com.tangosol.util.BitHelper |
|---|
countBits, countBits, countBits, indexOfLSB, indexOfLSB, indexOfLSB, indexOfMSB, indexOfMSB, indexOfMSB, rotateLeft, rotateLeft, rotateLeft, rotateRight, rotateRight, rotateRight, toBitString, toBitString, toBitString, toBytes, toBytes, toBytes, toBytes, toInt, toInt, toLong, toLong |
| Constructor Detail |
|---|
public PrimitiveArrayAdapter(XmlBean.BeanInfo infoBean,
java.lang.Class clzType,
java.lang.String sName,
java.lang.String sXml,
XmlElement xml)
infoBean - BeanInfo for a bean containing this propertyclzType - the type of the propertysName - the property namesXml - the XML tag namexml - additional XML information| Method Detail |
|---|
public boolean isStringable()
public abstract int hash(java.lang.Object o)
hash in class PropertyAdaptero - the object to compute a hash code for
public abstract boolean equalsValue(java.lang.Object o1,
java.lang.Object o2)
equalsValue in class PropertyAdaptero1 - the first objecto2 - the second objectpublic abstract java.lang.Object clone(java.lang.Object o)
clone in class PropertyAdaptero - the object to clonepublic java.lang.Object fromXml(XmlElement xml)
fromXml in class IterableAdapterxml - the XML element to deserialize fromjava.lang.UnsupportedOperationException - if the property cannot be read from a single XML elementpublic XmlElement toXml(java.lang.Object o)
toXml in class IterableAdaptero - the object to serializejava.lang.UnsupportedOperationException - if the property cannot be written to a single XML elementpublic java.lang.Object readXml(XmlElement xml)
readXml in class PropertyAdapterxml - the XML element containing the XML elements to deserialize from
public void writeXml(XmlElement xml,
java.lang.Object o)
writeXml in class PropertyAdapterxml - the XML element containing the XML elements to serialize too - the object to serialize (may be null)protected java.lang.Object readElements(XmlElement xml)
readElements in class IterableAdapterxml - the XML element containing the XML elements to deserialize from
protected void writeElements(XmlElement xml,
java.lang.Object o)
writeElements in class IterableAdapterxml - the XML element to which the iterable elements are writteno - the object to serialize (not null)public java.lang.Object fromXmlString(XmlElement xml)
xml - the XML element to deserialize from (not null)java.lang.UnsupportedOperationException - if the property cannot be read from a single XML elementpublic XmlElement toXmlString(java.lang.Object o)
o - the object to serialize (not null)java.lang.UnsupportedOperationException - if the property cannot be written to a single XML element
public abstract java.lang.Object readSparseArray(java.util.Iterator iter,
int c)
iter - the iterator of XmlElement objectsc - the size of the array
public abstract java.lang.Object readArray(java.util.Iterator iter,
XmlElement xml,
boolean fNested)
iter - the iterator of XmlElement objectsxml - the XmlElement from which the iterator was obtainedfNested - true if the array is nested under an array tag
public abstract void writeSparseArray(XmlElement xml,
java.lang.Object o,
java.lang.String sElement)
xml - the XmlElement that will contain the arrayo - the primitive arraysElement - the name of the element containing an element value
public abstract void writeArray(XmlElement xml,
java.lang.Object o,
java.lang.String sElement)
xml - the XmlElement that will contain the array elementso - the primitive arraysElement - the name of the element containing an element value
|
Oracle® Fusion Middleware Java API Reference for Oracle Coherence 12c (12.1.3.0.0) E47890-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||