JavaXT
|
|
Utils ClassProvides static methods to help generate Java code and SQL statements.
ConstructorsThere are no public constructors.Static MethodscamelCaseToUnderScore( String input ) returns String Used to convert a string in camel case (e.g. userID) into underscore (e.g. user_id). Credit: https://stackoverflow.com/a/50837880/ underscoreToCamelCase( String input ) returns String Used to convert a string with underscores (e.g. user_id) into camel case (e.g. userID). Credit: https://stackoverflow.com/a/17061543/ capitalize( String fieldName ) returns String Used to capitalize the first letter in the given string. |