The dollar symbol ($) is a valid character to name a variable, e.g. String superSecretFormula$;, but when we\'re talking about naming conventions, when should I
String superSecretFormula$;
From the Java Language Specification on identifiers:
The $ character should be used only in mechanically generated source code or, rarely, to access pre-existing names on legacy systems.
$