Class PrimitiveArrayAdapter.FloatArrayAdapter

All Implemented Interfaces:
Serializable
Enclosing class:
PrimitiveArrayAdapter

public static class PrimitiveArrayAdapter.FloatArrayAdapter extends PrimitiveArrayAdapter
A PropertyAdapter supporting float[].
Version:
1.00 2001.03.17
Author:
cp
See Also:
  • Constructor Details

    • FloatArrayAdapter

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

    • hash

      public int hash(Object o)
      compute a hash code for the passed object.
      Specified by:
      hash in class PrimitiveArrayAdapter
      Parameters:
      o - the object to compute a hash code for
      Returns:
      an integer hash code
    • equalsValue

      public boolean equalsValue(Object o1, Object o2)
      Compare the two passed objects for equality.
      Specified by:
      equalsValue in class PrimitiveArrayAdapter
      Parameters:
      o1 - the first object
      o2 - the second object
      Returns:
      true if the two objects are equal
    • clone

      public Object clone(Object o)
      Make a clone of the passed object.
      Specified by:
      clone in class PrimitiveArrayAdapter
      Parameters:
      o - the object to clone
      Returns:
      a clone of the passed object
    • isEmpty

      public boolean isEmpty(Object o)
      Determine if the specified value is empty.
      Overrides:
      isEmpty in class PropertyAdapter
      Parameters:
      o - the value
      Returns:
      true if the object is considered to be empty for persistence and XML-generation purposes
    • readSparseArray

      public Object readSparseArray(Iterator iter, int c)
      Read a sparse array of primitive values.
      Specified by:
      readSparseArray in class PrimitiveArrayAdapter
      Parameters:
      iter - the iterator of XmlElement objects
      c - the size of the array
      Returns:
      an array of primitive values
    • readArray

      public Object readArray(Iterator iter, XmlElement xml, boolean fNested)
      Read an array of primitive values.
      Specified by:
      readArray in class PrimitiveArrayAdapter
      Parameters:
      iter - the iterator of XmlElement objects
      xml - the XmlElement from which the iterator was obtained
      fNested - true if the array is nested under an array tag
      Returns:
      an array of primitive values
    • writeSparseArray

      public void writeSparseArray(XmlElement xml, Object o, String sElement)
      Write a sparse array of primitive values.
      Specified by:
      writeSparseArray in class PrimitiveArrayAdapter
      Parameters:
      xml - the XmlElement that will contain the array
      o - the primitive array
      sElement - the name of the element containing an element value
    • writeArray

      public void writeArray(XmlElement xml, Object o, String sElement)
      Write a sparse array of primitive values.
      Specified by:
      writeArray in class PrimitiveArrayAdapter
      Parameters:
      xml - the XmlElement that will contain the array elements
      o - the primitive array
      sElement - the name of the element containing an element value
    • readExternal

      public Object readExternal(DataInput in) throws 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; never null
      Throws:
      IOException - if an I/O exception occurs
    • writeExternal

      public void writeExternal(DataOutput out, Object o) throws 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:
      IOException - if an I/O exception occurs