Class BeanUtil
java.lang.Object
ch.qos.logback.core.joran.util.beans.BeanUtil
Deprecated.
This internal logback API is not supported by AEM as a Cloud Service.
Encapsulates utility methods associated with standard java beans.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic StringgetPropertyName(Method method) Deprecated.static booleanDeprecated.static booleanDeprecated.static booleanDeprecated.static StringtoLowerCamelCase(String string) Deprecated.Converts the given String into lower camel case form.
-
Field Details
-
PREFIX_GETTER_IS
Deprecated.- See Also:
-
PREFIX_GETTER_GET
Deprecated.- See Also:
-
PREFIX_SETTER
Deprecated.- See Also:
-
PREFIX_ADDER
Deprecated.- See Also:
-
-
Constructor Details
-
BeanUtil
public BeanUtil()Deprecated.
-
-
Method Details
-
isAdder
Deprecated.- Parameters:
method- to check if it is an 'adder' method.- Returns:
- true if the given method is an 'adder' method.
-
isGetter
Deprecated.- Parameters:
method- to check if it is a standard java beans getter.- Returns:
- true if the given method is a standard java beans getter.
-
isSetter
Deprecated.- Parameters:
method- to check if it is a standard java beans setter.- Returns:
- true if the given method is a standard java beans setter.
-
getPropertyName
Deprecated.- Parameters:
method- to get the associated property name for.- Returns:
- The property name of the associated property if the given method matches a standard java beans getter or setter.
-
toLowerCamelCase
Deprecated.Converts the given String into lower camel case form.- Parameters:
string- to decapitalize.- Returns:
- null if the given String is null. Emtpy string if the given string is empty. The given string if the first two consecutive letters are in upper case. The given string with the first letter in lower case otherwise, which might be the given string.
-