
- Java BeanUtils Tutorial
- Java BeanUtils - Home
- Java BeanUtils - Overview
- Standard JavaBeans
- Background
- Basic Property Access
- Nested Property Access
- Customizing Introspection
- Suppressing Properties
- Dynamic Beans (DynaBeans)
- Background
- Basic DynaBeans
- ResultSetDynaClass
- RowSetDynaClass
- WrapDynaBean
- Lazy DynaBeans
- Data Type Conversions
- Background
- BeanUtils and ConvertUtils
- Create Custom Converters
- Locale Aware Conversions
- Utility Objects & Classes
- Utility Objects & Classes
- Collections
- Comparing Beans
- Operating On Collections
- Querying Or Filtering Collections
- Transforming Collections
- Java BeanUtils Useful Resources
- Java BeanUtils - Quick Guide
- Java BeanUtils - Resources
- Java BeanUtils - Discussion
Java BeanUtils - Utility Objects & Classes
Description
The utility classes such as BeanUtils, ConvertUtils and PropertyUtils can be accessed through utility objects and shares the same caches and registered converters. You can instantiate corresponding class with same functionality for each static utility class.
Static utility classes are the classes having only static methods performing some operations on the objects that are passed as parameters. Typically such classes have no state.
The following table shows the Static Utility Classes and Utility Objects:
S.N. | Static Utility Class | Utility Object |
---|---|---|
1 | BeanUtils | BeanUtilsBean |
2 | ConvertUtils | ConvertUtilsBean |
3 | PropertyUtils | PropertyUtilsBean |
Advertisements