What syntax goes in a Method Declaration in Java ?

General Syntax of Method Declarations in Java  

< method modifiers > < type parameter list > < return type > 
< method name >(< parameter list >) < throws clause > 

{ //  body of method

< local variable declarations >

< nested local class declarations >

< statements >

}