There was an error while loading. Please reload this page.
lowerCamelCase
this
/**/ public class MyClass { private final int initial = 0; /**/ public void someMethod( ) { final int initial = this.initial; // Other method content } /**/ } /**/
getXY()
Object
variable
/**/ public void someMethod( ) { final Object object = this.other.getObject(); if ( checkCondition( ) ) { object.someMethod( ); } else { object.otherMethod( ); } } /**/
once instanciated
final
/**/ public void someMethod( ) { final String neverChanged = "foobar"; // Other method content } /**/