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 new 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 new 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 java.lang.Introspector. See also: https://stackoverflow.com/questions/4052840/most-efficient-way-to-make-the-first-character-of-a-string-lower-case/4052914
property
- a string representing the name of a JavaBean-like property