Skip navigation links

Oracle® Coherence Java API Reference
Release 3.7.1.0

E22843-01


com.tangosol.run.xml
Class RestrictedStringAdapter

java.lang.Object
  extended by com.tangosol.util.Base
      extended by com.tangosol.util.BitHelper
          extended by com.tangosol.util.ExternalizableHelper
              extended by com.tangosol.run.xml.PropertyAdapter
                  extended by com.tangosol.run.xml.SimpleAdapter
                      extended by com.tangosol.run.xml.RestrictedStringAdapter

All Implemented Interfaces:
java.io.Serializable

public class RestrictedStringAdapter
extends SimpleAdapter

A property adapter for a String based type that is known to have a converting factory method with the following signature: public static <type> valueOf(String s). This approach is usually used by the simple types that use derivation by restriction.

Version:
1.00 2002.05.21
Author:
gg
See Also:
http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/#derivation-by-restriction

Nested Class Summary

 

Nested classes/interfaces inherited from class com.tangosol.run.xml.SimpleAdapter
SimpleAdapter.BigDecimalAdapter, SimpleAdapter.BigIntegerAdapter, SimpleAdapter.BooleanAdapter, SimpleAdapter.ByteAdapter, SimpleAdapter.CharAdapter, SimpleAdapter.DateAdapter, SimpleAdapter.DoubleAdapter, SimpleAdapter.FloatAdapter, SimpleAdapter.IntAdapter, SimpleAdapter.LongAdapter, SimpleAdapter.OldDateAdapter, SimpleAdapter.ShortAdapter, SimpleAdapter.StringAdapter, SimpleAdapter.SystemTimeAdapter, SimpleAdapter.TimeAdapter, SimpleAdapter.TimestampAdapter

 

Field Summary
protected  java.lang.reflect.Method m_methodFactory
          The factory method.

 

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
RestrictedStringAdapter(XmlBean.BeanInfo infoBean, java.lang.Class clzType, java.lang.String sName, java.lang.String sXml, XmlElement xml)
          Construct a RestrictedStringAdapter.

 

Method Summary
 java.lang.Object fromUri(java.lang.String sUri)
          Deserialize an object from a URI element.
 java.lang.Object fromXml(XmlElement xml)
          Deserialize an object from an XML element.
protected  java.lang.Object instantiateBean(java.lang.String s)
          Convert a String into an instance of the bean.
 boolean isCloneRequired()
          Determine if the property value must be deep-cloned.
 java.lang.Object readExternal(java.io.DataInput in)
          Read a value from the passed DataInput object.
 java.lang.String toUri(java.lang.Object o)
          Serialize an object into a URI element.
 XmlElement toXml(java.lang.Object o)
          Serialize an object into an XML element.
 void writeExternal(java.io.DataOutput out, java.lang.Object o)
          Write the specified data to the passed DataOutput object.

 

Methods inherited from class com.tangosol.run.xml.SimpleAdapter
decodeString, encodeString, parseNumber

 

Methods inherited from class com.tangosol.run.xml.PropertyAdapter
clone, equalsValue, findAttribute, findElement, get, getAccessor, getBeanInfo, getCloner, getElements, getLocalXmlName, getMutator, getName, getNamespacePrefix, getNamespaceUri, getType, getXmlName, hash, isAnonymous, isAttribute, isElementMatch, isEmpty, readXml, set, setNamespacePrefix, toString, writeXml

 

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

 

Field Detail

m_methodFactory

protected java.lang.reflect.Method m_methodFactory
The factory method.

Constructor Detail

RestrictedStringAdapter

public RestrictedStringAdapter(XmlBean.BeanInfo infoBean,
                               java.lang.Class clzType,
                               java.lang.String sName,
                               java.lang.String sXml,
                               XmlElement xml)
Construct a RestrictedStringAdapter.
Parameters:
infoBean - BeanInfo for a bean containing this property
clzType - the type of the property
sName - the property name
sXml - the XML tag name
xml - additional XML information

Method Detail

isCloneRequired

public boolean isCloneRequired()
Description copied from class: PropertyAdapter
Determine if the property value must be deep-cloned. Typically, a property value must be deep-cloned if it is a mutable reference type, e.g. StringBuffer, Date, byte[].
Overrides:
isCloneRequired in class SimpleAdapter
Returns:
true if the property value must be "deep" cloned when the containing object is cloned

fromXml

public java.lang.Object fromXml(XmlElement xml)
Deserialize an object from an XML element.
Overrides:
fromXml in class SimpleAdapter
Parameters:
xml - the XML element to deserialize from
Returns:
the object deserialized from the XML element

toXml

public XmlElement toXml(java.lang.Object o)
Serialize an object into an XML element.
Overrides:
toXml in class SimpleAdapter
Parameters:
o - the object to serialize
Returns:
the XML element representing the serialized form of the passed object

fromUri

public java.lang.Object fromUri(java.lang.String sUri)
Deserialize an object from a URI element.
Overrides:
fromUri in class SimpleAdapter
Parameters:
sUri - the URI element to deserialize from
Returns:
the object deserialized from the URI element
Throws:
java.lang.UnsupportedOperationException - if the property cannot be read from a URI element

toUri

public java.lang.String toUri(java.lang.Object o)
Serialize an object into a URI element.
Overrides:
toUri in class SimpleAdapter
Parameters:
o - the object to serialize
Returns:
the URI element representing the serialized form of the passed object
Throws:
java.lang.UnsupportedOperationException - if the property cannot be written to a URI element

readExternal

public java.lang.Object readExternal(java.io.DataInput in)
                              throws java.io.IOException
Read a value from the passed DataInput object.
Overrides:
readExternal in class PropertyAdapter
Parameters:
in - the DataInput stream to read property data from
Returns:
the data read from the DataInput; may be null
Throws:
java.io.IOException - if an I/O exception occurs

writeExternal

public void writeExternal(java.io.DataOutput out,
                          java.lang.Object o)
                   throws java.io.IOException
Write the specified data to the passed DataOutput object.
Overrides:
writeExternal in class PropertyAdapter
Parameters:
out - the DataOutput stream to write to
o - the data to write to the DataOutput; never null
Throws:
java.io.IOException - if an I/O exception occurs

instantiateBean

protected java.lang.Object instantiateBean(java.lang.String s)
Convert a String into an instance of the bean.
Parameters:
s - a String value to be passed to the factory method
Returns:
an instance of the bean (property value)

Skip navigation links

Oracle® Coherence Java API Reference
Release 3.7.1.0

E22843-01


Copyright © 2000, 2011, Oracle and/or its affiliates. All rights reserved.