Java Doc for AbstractConverter.java in  » Library » Apache-commons-beanutils-1.8.0-BETA-src » org » apache » commons » beanutils » converters » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Library » Apache commons beanutils 1.8.0 BETA src » org.apache.commons.beanutils.converters 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.commons.beanutils.converters.AbstractConverter

All known Subclasses:   org.apache.commons.beanutils.converters.FileConverter,  org.apache.commons.beanutils.converters.NumberConverter,  org.apache.commons.beanutils.converters.ClassConverter,  org.apache.commons.beanutils.converters.CharacterConverter,  org.apache.commons.beanutils.converters.StringConverter,  org.apache.commons.beanutils.converters.ArrayConverter,  org.apache.commons.beanutils.converters.URLConverter,  org.apache.commons.beanutils.converters.DateTimeConverter,  org.apache.commons.beanutils.converters.BooleanConverter,
AbstractConverter
abstract public class AbstractConverter implements Converter(Code)
Base Converter implementation that provides the structure for handling conversion to and from a specified type.

This implementation provides the basic structure for converting to/from a specified type optionally using a default value or throwing a ConversionException if a conversion error occurs.

Implementations should provide conversion to the specified type and from the specified type to a String value by implementing the following methods:

  • convertToString(value) - convert to a String (default implementation uses the objects toString() method).
  • convertToType(Class, value) - convert to the specified type

version:
   $Revision: 555824 $ $Date: 2007-07-13 01:27:15 +0100 (Fri, 13 Jul 2007) $
since:
   1.8.0



Constructor Summary
public  AbstractConverter(Class defaultType)
     Construct a Converter that throws a ConversionException if an error occurs.
public  AbstractConverter(Class defaultType, Object defaultValue)
     Construct a Converter that returns a default value if an error occurs.

Method Summary
public  Objectconvert(Class type, Object value)
     Convert the input object into an output object of the specified type.
protected  ObjectconvertArray(Object value)
     Return the first element from an Array (or Collection) or the value unchanged if not an Array (or Collection). N.B.
protected  StringconvertToString(Object value)
     Convert the input object into a String.

N.B.This implementation simply uses the value's toString() method and should be overriden if a more sophisticated mechanism for conversion to a String is required.
Parameters:
  value - The input value to be converted.

abstract protected  ObjectconvertToType(Class type, Object value)
     Convert the input object into an output object of the specified type.

Typical implementations will provide a minimum of String --> type conversion.
Parameters:
  type - Data type to which this value should be converted.
Parameters:
  value - The input value to be converted.

protected  ObjectgetDefault(Class type)
     Return the default value for conversions to the specified type.
Parameters:
  type - Data type to which this value should be converted.
protected  ClassgetDefaultType()
     Return the default type this Converter handles.
protected  ObjecthandleError(Class type, Object value, Throwable cause)
     Handle Conversion Errors.
protected  ObjecthandleMissing(Class type)
     Handle missing values.

If a default value has been specified then it is returned otherwise a ConversionException is thrown.
Parameters:
  type - Data type to which this value should be converted.

public  booleanisUseDefault()
     Indicates whether a default value will be returned or exception thrown in the event of a conversion error.
 Loglog()
     Accessor method for Log instance.
 Classprimitive(Class type)
     Change primitve Class types to the associated wrapper class.
Parameters:
  type - The class type to check.
protected  voidsetDefaultValue(Object defaultValue)
     Set the default value, converting as required.
public  StringtoString()
     Provide a String representation of this converter.
 StringtoString(Class type)
     Provide a String representation of a java.lang.Class.
Parameters:
  type - The java.lang.Class.


Constructor Detail
AbstractConverter
public AbstractConverter(Class defaultType)(Code)
Construct a Converter that throws a ConversionException if an error occurs.
Parameters:
  defaultType - The default type this Converterhandles



AbstractConverter
public AbstractConverter(Class defaultType, Object defaultValue)(Code)
Construct a Converter that returns a default value if an error occurs.
Parameters:
  defaultType - The default type this Converterhandles
Parameters:
  defaultValue - The default value to be returnedif the value to be converted is missing or an erroroccurs converting the value.




Method Detail
convert
public Object convert(Class type, Object value)(Code)
Convert the input object into an output object of the specified type.
Parameters:
  type - Data type to which this value should be converted
Parameters:
  value - The input value to be converted The converted value.
throws:
  ConversionException - if conversion cannot be performedsuccessfully and no default is specified.



convertArray
protected Object convertArray(Object value)(Code)
Return the first element from an Array (or Collection) or the value unchanged if not an Array (or Collection). N.B. This needs to be overriden for array/Collection converters.
Parameters:
  value - The value to convert The first element in an Array (or Collection)or the value unchanged if not an Array (or Collection)



convertToString
protected String convertToString(Object value) throws Throwable(Code)
Convert the input object into a String.

N.B.This implementation simply uses the value's toString() method and should be overriden if a more sophisticated mechanism for conversion to a String is required.
Parameters:
  value - The input value to be converted. the converted String value.
throws:
  Throwable - if an error occurs converting to a String




convertToType
abstract protected Object convertToType(Class type, Object value) throws Throwable(Code)
Convert the input object into an output object of the specified type.

Typical implementations will provide a minimum of String --> type conversion.
Parameters:
  type - Data type to which this value should be converted.
Parameters:
  value - The input value to be converted. The converted value.
throws:
  Throwable - if an error occurs converting to the specified type




getDefault
protected Object getDefault(Class type)(Code)
Return the default value for conversions to the specified type.
Parameters:
  type - Data type to which this value should be converted. The default value for the specified type.



getDefaultType
protected Class getDefaultType()(Code)
Return the default type this Converter handles. The default type this Converter handles.



handleError
protected Object handleError(Class type, Object value, Throwable cause)(Code)
Handle Conversion Errors.

If a default value has been specified then it is returned otherwise a ConversionException is thrown.
Parameters:
  type - Data type to which this value should be converted.
Parameters:
  value - The input value to be converted
Parameters:
  cause - The exception thrown by the convert method The default value.
throws:
  ConversionException - if no default value has beenspecified for this Converter.




handleMissing
protected Object handleMissing(Class type)(Code)
Handle missing values.

If a default value has been specified then it is returned otherwise a ConversionException is thrown.
Parameters:
  type - Data type to which this value should be converted. The default value.
throws:
  ConversionException - if no default value has beenspecified for this Converter.




isUseDefault
public boolean isUseDefault()(Code)
Indicates whether a default value will be returned or exception thrown in the event of a conversion error. true if a default value will be returned forconversion errors or false if a ConversionExceptionwill be thrown.



log
Log log()(Code)
Accessor method for Log instance.

The Log instance variable is transient and accessing it through this method ensures it is re-initialized when this instance is de-serialized. The Log instance.




primitive
Class primitive(Class type)(Code)
Change primitve Class types to the associated wrapper class.
Parameters:
  type - The class type to check. The converted type.



setDefaultValue
protected void setDefaultValue(Object defaultValue)(Code)
Set the default value, converting as required.

If the default value is different from the type the Converter handles, it will be converted to the handled type.
Parameters:
  defaultValue - The default value to be returnedif the value to be converted is missing or an erroroccurs converting the value.
throws:
  ConversionException - if an error occurs convertingthe default value




toString
public String toString()(Code)
Provide a String representation of this converter. A String representation of this converter



toString
String toString(Class type)(Code)
Provide a String representation of a java.lang.Class.
Parameters:
  type - The java.lang.Class. The String representation.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.