Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Class names should start with a capital letter with every subsequent word capitalised, for example: DataProcessor [mandatory].
  2. The name of exception classes should end in the word exception, for example: UnknownMungeException [mandatory].
  3. Class names should in general not be overloaded. For example, defining a class "com.foo.bar.String" should be avoided as there is already a class "java.lang.String" [recommended].
    Rationale: adhering to this rule reduces the likelihood of confusion and means that the use of fully qualified class names should not be required.
  4. Class name should not be plural. For example, `ProgramManager` not `ProgramsManager` [recommended]. 
  5. The definition of the primary class (i.e. the class with the same name as the java file) should start in column 0 of the source file. Inner class definitions should be indented 2 spaces more than their enclosing class [mandatory].
  6. Declare a class as final only if specialization will never be required and improved performance is essential. With modern JVMs there in fact may be no performance advantage. Warning: use of final limits code reuse [mandatory].
  7. For all but simplest classes the following methods should have useful definitions [recommended]:
    public boolean equals(Object obj)
    public int hashCode()
    public String toString()
    
  8. The order of presentation of the sections in a class should be [mandatory]:
  9. Variables
  10. Methods Variables

    This section gives guidelines for class and instance variable definitions in Java. In this section if a rule uses the term variable rather than instance variable or class variable, then the rule applies to both types of variable.

  11. The order of presentation of variables in a class definition should be [recommended]:
    1. private, protected, public: static final variables (aka constant class variables).
    2. private, protected, public: static variables (aka class variables).
    3. private, protected, public: final variables (aka constant instance variables).
    4. private, protected, public: variables (aka instance variables).
      It should be noted that as Javadoc will automatically order variables in a consistent manner, rigid adherence to this rule is not necessary.
  12. Variable modifiers must be presented in the following order: static, final, transient, volatile [mandatory].
  13. The names of static final variables should be upper case with subsequent words prefixed with an underscore [mandatory]. For example:
    public static final int NOT_FOUND = -1;
    
  14. When a subclass refers to a static final variable defined in a parent class, access should be qualified by specifying the defining class name [mandatory]. For example: use ParentClass.MAX rather than MAX.
  15. The names of variables (other that static final) should start with a lower case letter. Any words that are contained in the rest of the variable name should be capitalised [mandatory]. For example:
    String name;
    String[] childrensNames;
  16. Variables must not be named using the so-called Hungarian notation [mandatory]. For example:
    int nCount = 4; // not allowed
    
  17. Only one variable may be defined per line [mandatory].
  18. Variable declarations should be indented 2 spaces more than their enclosing class [mandatory].
  19. All variables should be preceded by a comment that explains what the variable is for, where it is used and so forth, unless it is obvious. The comment should not be a Javadoc, unless it is a public or protected variable.
  20. All public constants must be preceded by a Javadoc that explains the meaning of the constant [mandatory].
  21. Never declare instance variables as public unless the class is effectively a "struct" [mandatory].
  22. Never give a variable the same name as a variable in a superclass [mandatory].

...

  • Constructors and finalize methods should follow immediately after the variable declarations [mandatory].
  • Do not call non-final methods from constructors. This can lead to unexpected results when the class is subclassed. If you must call non-final methods from constructors, document this in the constructor's Javadoc [mandatory]. Note that private implies final.
  • Methods that are associated with the same area of functionality should be physically close to one another [recommended].
  • After grouping by functionality, methods should be presented in the following order [recommended]:
  • private, protected, public: static methods.
  • private, protected, public: instance methods.
    It should be noted that as Javadoc will automatically order methods in a consistent manner, rigid adherence to this rule is not necessary.
  • Method modifiers should be presented in the following order: abstract, static, final., synchronized [mandatory]
  • When a synchronized method is overloaded, it should be explicitly synchronized in the subclass [recommended].
  • Method names should start with a lower case letter with all subsequent words being capitalised [mandatory]. For example:
    protected int resize(int newSize)
    protected void addContentsTo(Container destinationContainer)
    
  • Methods which get and set values should be named as follows [mandatory]:
    Type getVariableName()
    void setVariableName(Type newValue)
    

    Exceptions should be used to report any failure to get or set a value. The "@param" description should detail any assumptions made by the implementation, for example: "Specifying a null value will cause an error to be reported".

  • Method names should not have redundancy. For example, method name `getSecret` in `SecretManager` class should be avoided. Instead, the method name should be simply `get`[recommended]. 
  • Method definitions should be indented 2 spaces more than their enclosing class [mandatory].
  • All methods should be preceded by a Javadoc comment specifying what the method is for, detailing all arguments, returns and possible exceptions. This comment should be of the following form and be indented to the same level as the method it refers to [mandatory]:
  • The braces associated with a method should be on a line on their own and be indented to the same level as the method [mandatory]. For example:
    public void munge() {
        int i;
        // method definition omitted...
    }
    
  • The body of a method should be indented 2 columns further that the opening and closing braces associated with it [mandatory]. See the above rule for an example.
  • When declaring and calling methods there should be no whitespace before or after the parenthesis [mandatory].
  • In argument lists there should be no white space before a comma, and only a single space (or newline) after it [mandatory]. For example:
    public void munge(int depth, String name) {
        if (depth > 0) {
            munge(depth - 1, name);
        }
        // do something
    }
    
  • Wherever reasonable define a default constructor (i.e. one that takes no arguments) so that Class.newInstance() may be used [recommended]. If an instance which was created by default construction could be used until further initialisation has been performed, then all unserviceable requests should cause a runtime exception to be thrown.
  • The method public static void main() should not be used for test purposes. Instead a test/demo program should be supplied separately. [mandatory].
  • Public access methods (i.e. methods that get and set attributes) should only be supplied when required [mandatory].
  • If an instance method has no natural return value, declare it as void rather than using the "return this;" convention [mandatory].

...