PublicUtils

Class

Important utilities for generating HTML names, stubs and useful code.

Extends

Object

Modifiers

public

Constructors


new PublicUtils ()

Constructor
No description is available for this element.
Return Type

PublicUtils

Modifiers

public


Methods


getPrettyName (Class)

Method
No description is available for this element.
IndexTypeName
1Classtype
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)

Method
No description is available for this element.
IndexTypeName
1Classtype
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();