public abstract class Conventions
extends java.lang.Object
Constructor and Description |
---|
Conventions() |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
attributeNameToPropertyName(java.lang.String attributeName)
Convert
String s in attribute name format (lowercase, hyphens separating words)
into property name format (camel-cased). |
static java.lang.String |
getQualifiedAttributeName(java.lang.Class<?> enclosingClass,
java.lang.String attributeName)
Return an attribute name qualified by the supplied enclosing
Class . |
static java.lang.String |
getVariableName(java.lang.Object value)
Determine the conventional variable name for the supplied
Object based on its concrete type. |
static java.lang.String |
getVariableNameForParameter(MethodParameter parameter)
Determine the conventional variable name for the supplied parameter,
taking the generic collection type (if any) into account.
|
static java.lang.String |
getVariableNameForReturnType(java.lang.reflect.Method method)
Determine the conventional variable name for the return type of the supplied method,
taking the generic collection type (if any) into account.
|
static java.lang.String |
getVariableNameForReturnType(java.lang.reflect.Method method,
java.lang.Class<?> resolvedType,
java.lang.Object value)
Determine the conventional variable name for the return type of the supplied method,
taking the generic collection type (if any) into account, falling back to the
given return value if the method declaration is not specific enough (i.e.
|
static java.lang.String |
getVariableNameForReturnType(java.lang.reflect.Method method,
java.lang.Object value)
Determine the conventional variable name for the return type of the supplied method,
taking the generic collection type (if any) into account, falling back to the
given return value if the method declaration is not specific enough (i.e.
|
public static java.lang.String getVariableName(java.lang.Object value)
Object
based on its concrete type. The convention
used is to return the uncapitalized short name of the Class
,
according to JavaBeans property naming rules: So,
com.myapp.Product
becomes product
;
com.myapp.MyProduct
becomes myProduct
;
com.myapp.UKProduct
becomes UKProduct
.
For arrays, we use the pluralized version of the array component type.
For Collection
s we attempt to 'peek ahead' in the
Collection
to determine the component type and
return the pluralized version of that component type.
value
- the value to generate a variable name forpublic static java.lang.String getVariableNameForParameter(MethodParameter parameter)
parameter
- the method or constructor parameter to generate a variable name forpublic static java.lang.String getVariableNameForReturnType(java.lang.reflect.Method method)
method
- the method to generate a variable name forpublic static java.lang.String getVariableNameForReturnType(java.lang.reflect.Method method, java.lang.Object value)
Object
or as untyped collection).method
- the method to generate a variable name forvalue
- the return value (may be null
if not available)public static java.lang.String getVariableNameForReturnType(java.lang.reflect.Method method, java.lang.Class<?> resolvedType, java.lang.Object value)
Object
or as untyped collection).method
- the method to generate a variable name forresolvedType
- the resolved return type of the methodvalue
- the return value (may be null
if not available)public static java.lang.String attributeNameToPropertyName(java.lang.String attributeName)
String
s in attribute name format (lowercase, hyphens separating words)
into property name format (camel-cased). For example, transaction-manager
is
converted into transactionManager
.public static java.lang.String getQualifiedAttributeName(java.lang.Class<?> enclosingClass, java.lang.String attributeName)
Class
. For example,
the attribute name 'foo
' qualified by Class
'com.myapp.SomeClass
'
would be 'com.myapp.SomeClass.foo
'