public class BeanUtils extends Object
Type Params | Return Type | Name and description |
---|---|---|
|
public static String |
capitalize(String property) This is the complement the behavior of the decapitalize(String) method. |
|
public static String |
decapitalize(String property) Returns a string which is the same as the original except the first letter will be lowercase except for some special cases as per JavaBean handling. |
This is the complement the behavior of the decapitalize(String) method. We handle names that begin with an initial lowerCase followed by upperCase with special JavaBean behavior (which is to make no change). See GROOVY-3211.
property
- the property name to capitalizeReturns a string which is the same as the original except the first letter will be lowercase except for some special cases as per JavaBean handling. In particular, if the first two letters are both uppercase, e.g. URL, then no change of case occurs.
Originally inspired by the method with the same name in Introspector.
property
- a string representing the name of a JavaBean-like property