Menu

Coding guidelines

General rules

Generally we follow the Sun/Oracle Code Conventions

Below are some specific additional guidelines

Strings

Compound Strings should generally be constructed using the + operator for Strings as it is more readable than the StringBuffer alternative. Only when there is a major performance incentive you should use the StringBuffer alternative.


Related

Developer docs: Home