PublicUtils
Class
Important utilities for generating HTML names, stubs and useful code.
Extends
Object
Modifiers
public
Constructors
new PublicUtils ()
ConstructorNo description is available for this element.
Return Type
PublicUtils
Modifiers
public
Methods
getPrettyName (Class)
MethodNo description is available for this element.
Index | Type | Name |
---|---|---|
1 | Class | type |
Return Type
String
Modifiers
public static
// Randomly-generated example
final String string = PublicUtils.getPrettyName(type);
assert string.equals(anObject);
assert string.length() == 80;
string.toString();
createVarName (Class)
MethodNo description is available for this element.
Index | Type | Name |
---|---|---|
1 | Class | type |
Return Type
String
Modifiers
public static
// Randomly-generated example
final String string = PublicUtils.createVarName(type);
assert string.equals(anObject);
assert string.length() == 45;
string.toString();