Class NameUtils
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic StringgetClassName(String logicalName) Return the class name for the given logical name.static StringgetClassName(String logicalName, String trailingName) Returns the class name for the given logical name and trailing name.static StringReturns the class name representation of the given name.static StringgetFullClassName(Class cls) Returns the class name, including package, for the given class.static StringgetFullClassName(String className) Returns the class name, including package, for the given class.static StringgetGetterName(String propertyName) Calculate the name for a getter method to retrieve the specified property.static StringgetLogicalName(Class<?> clazz, String trailingName) Retrieves the logical class name of a Micronaut artifact given the Micronaut class and a specified trailing name.static StringgetLogicalName(String name, String trailingName) Retrieves the logical name of the class without the trailing name.static StringgetLogicalPropertyName(String className, String trailingName) static StringgetNameFromScript(String scriptName) Calculates the class name from a script name in the form my-funk-grails-script.static StringgetNaturalName(String name) Converts a property name into its natural language equivalent eg ('firstName' becomes 'First Name').static StringgetNaturalNameOfEnum(String name) Converts an enum style name into its natural language equivalent eg ('FIRST_NAME' becomes 'First Name').static StringgetPackageName(String className) Returns the package name without the class.static StringgetPluginName(String descriptorName) Returns the name of a plugin given the name of the *GrailsPlugin.groovy descriptor file.static StringgetPropertyForGetter(String getterName) Returns a property name equivalent for the given getter name or null if it is not a valid getter.static StringgetPropertyForGetter(String getterName, Class returnType) Returns a property name equivalent for the given getter name and return type or null if it is not a valid getter.static StringgetPropertyForSetter(String setterName) Returns a property name equivalent for the given setter name or null if it is not a valid setter.static StringgetPropertyName(Class<?> clazz) Shorter version of getPropertyNameRepresentation.static StringgetPropertyName(String name) Shorter version of getPropertyNameRepresentation.static StringgetPropertyNameConvention(Object object, String suffix) Returns an appropriate property name for the given object.static StringConverts foo-bar into fooBar.static StringgetPropertyNameRepresentation(Class<?> targetClass) Returns the property name equivalent for the specified class.static StringReturns the property name representation of the given name.static StringgetScriptName(Class<?> clazz) Retrieves the script name representation of the supplied class.static StringgetScriptName(String name) Retrieves the script name representation of the given class name.static StringgetSetterName(String propertyName) Retrieves the name of a setter for the specified property name.static StringgetShortName(Class<?> targetClass) Returns the class name without the package prefix.static StringgetShortName(String className) Returns the class name without the package prefix.static booleanDetermines whether a given string isnull, empty, or only contains whitespace.static booleanDeprecated.static booleanReturns true if the name of the method specified and the number of arguments make it a javabean property getter.protected static booleanisPropertyMethodSuffix(String suffix) This method is used when interrogating a method name to determine if the method represents a property getter.static booleanisValidAppName(String appName) verifies the app is not blank, null or matches micronautstatic booleanisValidJavaIdentifier(String name) Test whether the given name is a valid Java identifier.static booleanisValidJavaPackage(String packageName) Test whether the give package name is a valid Java package.static booleanisValidServiceId(String name) Checks whether the given name is a valid service identifier.static Projectstatic ProjectIdentifierparseProjectIdentifier(String name)
-
Field Details
-
MICRONAUT
- See Also:
-
-
Method Details
-
parseProjectIdentifier
- Throws:
IllegalArgumentException
-
isValidAppName
verifies the app is not blank, null or matches micronaut- Parameters:
appName- Application's name- Returns:
- True if it is valid
-
parse
- Throws:
IllegalArgumentException
-
isValidServiceId
Checks whether the given name is a valid service identifier.- Parameters:
name- The name- Returns:
- True if it is
-
getSetterName
-
getGetterName
-
getClassName
Returns the class name for the given logical name and trailing name. For example "person" and "Controller" would evaluate to "PersonController".- Parameters:
logicalName- The logical nametrailingName- The trailing name- Returns:
- The class name
-
getFullClassName
-
getFullClassName
-
getClassName
-
getClassNameRepresentation
-
getLogicalName
Retrieves the logical class name of a Micronaut artifact given the Micronaut class and a specified trailing name.- Parameters:
clazz- The classtrailingName- The trailing name such as "Controller" or "Service"- Returns:
- The logical class name
-
getLogicalName
-
getLogicalPropertyName
-
getPropertyName
-
getPropertyName
-
getPropertyNameRepresentation
-
getPropertyNameRepresentation
-
getPropertyNameForLowerCaseHyphenSeparatedName
-
getShortName
-
getShortName
-
getPackageName
-
getScriptName
-
getScriptName
-
getNameFromScript
-
getPluginName
Returns the name of a plugin given the name of the *GrailsPlugin.groovy descriptor file. For example, "DbUtilsGrailsPlugin.groovy" gives "db-utils".- Parameters:
descriptorName- The simple name of the plugin descriptor.- Returns:
- The plugin name for the descriptor, or
nullif descriptorName isnull, or an empty string if descriptorName is an empty string. - Throws:
IllegalArgumentException- if the given descriptor name is not valid, i.e. if it doesn't end with "GrailsPlugin.groovy".
-
getNaturalName
-
getNaturalNameOfEnum
-
isBlank
Determines whether a given string is
null, empty, or only contains whitespace. If it contains anything other than whitespace then the string is not considered to be blank and the method returnsfalse.We could use Commons Lang for this, but we don't want NameUtils to have a dependency on any external library to minimise the number of dependencies required to bootstrap Micronaut.
- Parameters:
str- The string to test.- Returns:
trueif the string isnull, or blank.
-
isValidJavaPackage
Test whether the give package name is a valid Java package.- Parameters:
packageName- The name of the package- Returns:
- True if it is valid
-
isValidJavaIdentifier
Test whether the given name is a valid Java identifier.- Parameters:
name- The name- Returns:
- True if it is
-
getPropertyNameConvention
Returns an appropriate property name for the given object. If the object is a collection will append List, Set, Collection or Map to the property name.- Parameters:
object- The objectsuffix- The suffix to append to the name.- Returns:
- The property name convention
-
getPropertyForGetter
Returns a property name equivalent for the given getter name or null if it is not a valid getter. If not null or empty the getter name is assumed to be a valid identifier.- Parameters:
getterName- The getter name- Returns:
- The property name equivalent
-
getPropertyForGetter
Returns a property name equivalent for the given getter name and return type or null if it is not a valid getter. If not null or empty the getter name is assumed to be a valid identifier.- Parameters:
getterName- The getter namereturnType- The type the method returns- Returns:
- The property name equivalent
-
isGetter
Deprecated.useisGetter(String, Class, Class[])instead because this method has a defect for "is.." method with Boolean return types.Returns true if the name of the method specified and the number of arguments make it a javabean property getter. The name is assumed to be a valid Java method name, that is not verified.- Parameters:
name- The name of the methodargs- The arguments- Returns:
- true if it is a javabean property getter
-
isGetter
Returns true if the name of the method specified and the number of arguments make it a javabean property getter. The name is assumed to be a valid Java method name, that is not verified.- Parameters:
name- The name of the methodreturnType- The return type of the methodargs- The arguments- Returns:
- true if it is a javabean property getter
-
isPropertyMethodSuffix
This method is used when interrogating a method name to determine if the method represents a property getter. For example, if a method is namedgetSomeProperty, the value"SomeProperty"could be passed to this method to determine that the method should be considered a property getter. Examples of suffixes that would be considered property getters:- SomeProperty
- Word
- aProperty
- S
- X567
Examples of suffixes that would not be considered property getters:
- someProperty
- word
- s
- x567
- 2other
- 5
A suffix like
propfrom a methodgetprop()is not recognized as a valid suffix. However Groovy will recognize such a method as a property getter but only if a methodgetProp()or a propertypropdoes not also exist. The Java Beans specification is unclear on how to treat such method names, it only says that "by default" the suffix will start with a capital letter because of the camel case style usually used. (See the JavaBeans API specification sections 8.3 and 8.8.)This method assumes that all characters in the name are valid Java identifier letters.
- Parameters:
suffix- The suffix to inspect- Returns:
- true if suffix indicates a property name
-
getPropertyForSetter
Returns a property name equivalent for the given setter name or null if it is not a valid setter. If not null or empty the setter name is assumed to be a valid identifier.- Parameters:
setterName- The setter name, must be null or empty or a valid identifier name- Returns:
- The property name equivalent
-
isGetter(String, Class, Class[])instead because this method has a defect for "is.." method with Boolean return types.