Java Doc for NumberConverter.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
      org.apache.commons.beanutils.converters.NumberConverter

All known Subclasses:   org.apache.commons.beanutils.converters.FloatConverter,  org.apache.commons.beanutils.converters.ByteConverter,  org.apache.commons.beanutils.converters.BigDecimalConverter,  org.apache.commons.beanutils.converters.DoubleConverter,  org.apache.commons.beanutils.converters.LongConverter,  org.apache.commons.beanutils.converters.ShortConverter,  org.apache.commons.beanutils.converters.IntegerConverter,  org.apache.commons.beanutils.converters.BigIntegerConverter,
NumberConverter
public class NumberConverter extends AbstractConverter (Code)
org.apache.commons.beanutils.Converter implementaion that handles conversion to and from java.lang.Number objects.

This implementation handles conversion for the following java.lang.Number types.

  • java.lang.Byte
  • java.lang.Short
  • java.lang.Integer
  • java.lang.Long
  • java.lang.Float
  • java.lang.Double
  • java.math.BigDecimal
  • java.math.BigInteger

String Conversions (to and from)

This class provides a number of ways in which number conversions to/from Strings can be achieved:
  • Using the default format for the default Locale, configure using:
    • setUseLocaleFormat(true)
  • Using the default format for a specified Locale, configure using:
    • setLocale(Locale)
  • Using a specified pattern for the default Locale, configure using:
    • setPattern(String)
  • Using a specified pattern for a specified Locale, configure using:
    • setPattern(String)
    • setLocale(Locale)
  • If none of the above are configured the toNumber(String) method is used to convert from String to Number and the Number's toString() method used to convert from Number to String.

N.B.Patterns can only be specified used the standard pattern characters and NOT in localized form (see java.text.SimpleDateFormat). For example to cater for number styles used in Germany such as 0.000,00 the pattern is specified in the normal form 0,000.00 and the locale set to Locale.GERMANY.
version:
   $Revision: 555845 $ $Date: 2007-07-13 03:52:05 +0100 (Fri, 13 Jul 2007) $
since:
   1.8.0




Constructor Summary
public  NumberConverter(Class defaultType, boolean allowDecimals)
     Construct a java.lang.Number Converter that throws a ConversionException if a error occurs.
public  NumberConverter(Class defaultType, boolean allowDecimals, Object defaultValue)
     Construct a java.lang.Number Converter that returns a default value if an error occurs.

Method Summary
protected  StringconvertToString(Object value)
     Convert an input Number object into a String.
protected  ObjectconvertToType(Class targetType, Object value)
     Convert the input object into a Number object of the specified type.
Parameters:
  targetType - Data type to which this value should be converted.
Parameters:
  value - The input value to be converted.
public  LocalegetLocale()
     Return the Locale for the Converter (or null if none specified).
public  StringgetPattern()
     Return the number format pattern used to convert Numbers to/from a java.lang.String (or null if none specified).
public  booleanisAllowDecimals()
     Return whether decimals are allowed in the number.
public  voidsetLocale(Locale locale)
     Set the Locale for the Converter.
public  voidsetPattern(String pattern)
     Set a number format pattern to use to convert Numbers to/from a java.lang.String.
public  voidsetUseLocaleFormat(boolean useLocaleFormat)
     Set whether a format should be used to convert the Number.
public  StringtoString()
     Provide a String representation of this number converter.


Constructor Detail
NumberConverter
public NumberConverter(Class defaultType, boolean allowDecimals)(Code)
Construct a java.lang.Number Converter that throws a ConversionException if a error occurs.
Parameters:
  defaultType - The default type this Converterhandles
Parameters:
  allowDecimals - Indicates whether decimals are allowed



NumberConverter
public NumberConverter(Class defaultType, boolean allowDecimals, Object defaultValue)(Code)
Construct a java.lang.Number Converter that returns a default value if an error occurs.
Parameters:
  defaultType - The default type this Converterhandles
Parameters:
  allowDecimals - Indicates whether decimals are allowed
Parameters:
  defaultValue - The default value to be returned




Method Detail
convertToString
protected String convertToString(Object value) throws Throwable(Code)
Convert an input Number object into a String.
Parameters:
  value - The input value to be converted the converted String value.
throws:
  Throwable - if an error occurs converting to a String



convertToType
protected Object convertToType(Class targetType, Object value) throws Throwable(Code)
Convert the input object into a Number object of the specified type.
Parameters:
  targetType - 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



getLocale
public Locale getLocale()(Code)
Return the Locale for the Converter (or null if none specified). The locale to use for conversion



getPattern
public String getPattern()(Code)
Return the number format pattern used to convert Numbers to/from a java.lang.String (or null if none specified).

See java.text.SimpleDateFormat for details of how to specify the pattern. The format pattern.




isAllowDecimals
public boolean isAllowDecimals()(Code)
Return whether decimals are allowed in the number. Whether decimals are allowed in the number



setLocale
public void setLocale(Locale locale)(Code)
Set the Locale for the Converter.
Parameters:
  locale - The locale to use for conversion



setPattern
public void setPattern(String pattern)(Code)
Set a number format pattern to use to convert Numbers to/from a java.lang.String.

See java.text.SimpleDateFormat for details of how to specify the pattern.
Parameters:
  pattern - The format pattern.




setUseLocaleFormat
public void setUseLocaleFormat(boolean useLocaleFormat)(Code)
Set whether a format should be used to convert the Number.
Parameters:
  useLocaleFormat - true if a number formatshould be used.



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



Methods inherited from org.apache.commons.beanutils.converters.AbstractConverter
public Object convert(Class type, Object value)(Code)(Java Doc)
protected Object convertArray(Object value)(Code)(Java Doc)
protected String convertToString(Object value) throws Throwable(Code)(Java Doc)
abstract protected Object convertToType(Class type, Object value) throws Throwable(Code)(Java Doc)
protected Object getDefault(Class type)(Code)(Java Doc)
protected Class getDefaultType()(Code)(Java Doc)
protected Object handleError(Class type, Object value, Throwable cause)(Code)(Java Doc)
protected Object handleMissing(Class type)(Code)(Java Doc)
public boolean isUseDefault()(Code)(Java Doc)
Log log()(Code)(Java Doc)
Class primitive(Class type)(Code)(Java Doc)
protected void setDefaultValue(Object defaultValue)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
String toString(Class type)(Code)(Java Doc)

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.