org.apache.commons.beanutils.converters
Class ByteArrayConverter
java.lang.Object
   org.apache.commons.beanutils.converters.AbstractArrayConverter
org.apache.commons.beanutils.converters.AbstractArrayConverter
       org.apache.commons.beanutils.converters.ByteArrayConverter
org.apache.commons.beanutils.converters.ByteArrayConverter
- All Implemented Interfaces: 
- Converter
Deprecated. Replaced by the new ArrayConverter implementation
- public final class ByteArrayConverter 
- extends AbstractArrayConverter
Standard Converter implementation that converts an incoming
 String into a primitive array of byte.  On a conversion failure, returns
 a specified default value or throws a ConversionException depending
 on how this instance is constructed.
- Since:
- 1.4
- Version:
- $Revision: 556229 $ $Date: 2007-07-14 07:11:19 +0100 (Sat, 14 Jul 2007) $
- Author:
- Craig R. McClanahan
 
 
 
| Method Summary | 
|  Object | convert(Class type,
               Object value)Deprecated. Convert the specified input object into an output object of the
 specified type.
 | 
 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
ByteArrayConverter
public ByteArrayConverter()
- Deprecated. - Create a Converterthat will
 throw aConversionExceptionif a conversion error occurs.
 
ByteArrayConverter
public ByteArrayConverter(Object defaultValue)
- Deprecated. - Create a Converterthat will return
 the specified default value if a conversion error occurs.
 
- Parameters:
- defaultValue- The default value to be returned
 
convert
public Object convert(Class type,
                      Object value)
- Deprecated. - Convert the specified input object into an output object of the
 specified type.
 
- 
- Specified by:
- convertin interface- Converter
- Specified by:
- convertin class- AbstractArrayConverter
 
- 
- Parameters:
- type- Data type to which this value should be converted
- value- The input value to be converted
- Returns:
- the converted value
- Throws:
- ConversionException- if conversion cannot be performed
  successfully
 
Copyright © 2000-2008 The Apache Software Foundation. All Rights Reserved.