org.springframework.beans.propertyeditors

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 » J2EE » spring framework 2.5 » org.springframework.beans.propertyeditors 
org.springframework.beans.propertyeditors
Properties editors used to convert from String values to object types such as java.util.Properties.

Some of these editors are registered automatically by BeanWrapperImpl. "CustomXxxEditor" classes are intended for manual registration in specific binding processes, as they are localized or the like.

Java Source File NameTypeComment
ByteArrayPropertyEditor.javaClass Editor for byte arrays.
CharacterEditor.javaClass Editor for a java.lang.Character , to populate a property of type Character or char from a String value.
CharArrayPropertyEditor.javaClass Editor for char arrays.
ClassArrayEditor.javaClass Property editor for an array of java.lang.Class Classes , to enable the direct population of a Class[] property without having to use a String class name property as bridge.
ClassEditor.javaClass Property editor for java.lang.Class java.lang.Class , to enable the direct population of a Class property without recourse to having to use a String class name property as bridge.
CustomBooleanEditor.javaClass Property editor for Boolean/boolean properties.
CustomCollectionEditor.javaClass Property editor for Collections, converting any source Collection to a given target Collection type.
CustomDateEditor.javaClass PropertyEditor for java.util.Date, supporting a custom java.text.DateFormat.
CustomMapEditor.javaClass Property editor for Maps, converting any source Map to a given target Map type.
CustomNumberEditor.javaClass Property editor for any Number subclass like Integer, Long, Float, Double.
FileEditor.javaClass Editor for java.io.File, to directly populate a File property from a Spring resource location.
InputStreamEditor.javaClass One-way PropertyEditor, which can convert from a text string to a java.io.InputStream, allowing InputStream properties to be set directly as a text string.
LocaleEditor.javaClass Editor for java.util.Locale, to directly populate a Locale property.

Expects the same syntax as Locale's toString, i.e.

PatternEditor.javaClass Editor for java.util.regex.Pattern, to directly populate a Pattern property.
PropertiesEditor.javaClass Custom java.beans.PropertyEditor for Properties objects.

Handles conversion from content String to Properties object. Also handles Map to Properties conversion, for populating a Properties object via XML "map" entries.

The required format is defined in the standard Properties documentation.

ResourceBundleEditor.javaClassjava.beans.PropertyEditor implementation for java.util.ResourceBundle ResourceBundles .
StringArrayPropertyEditor.javaClass Custom java.beans.PropertyEditor for String String[] arrays.
StringTrimmerEditor.javaClass Property editor that trims Strings.

Optionally allows transforming an empty string into a null value. Needs to be explictly registered, e.g.

URIEditor.javaClass Editor for java.net.URI, to directly populate a URI property instead of using a String property as bridge.

Supports Spring-style URI notation: any fully qualified standard URI ("file:", "http:", etc) and Spring's special "classpath:" pseudo-URL, which will be resolved to a corresponding URI.

Note: A URI is more relaxed than a URL in that it does not require a valid protocol to be specified.

URLEditor.javaClass Editor for java.net.URL, to directly populate a URL property instead of using a String property as bridge.

Supports Spring-style URL notation: any fully qualified standard URL ("file:", "http:", etc) and Spring's special "classpath:" pseudo-URL, as well as Spring's context-specific relative file paths.

Note: A URL must specify a valid protocol, else it will be rejected upfront.

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