For example I have following class
public class AnyClassName {
    static {
        AnyMethodCall(anyParameters, ..., ...);
    }
    body of class ...
}
The question is what is the reason of surrounding the method: AnyMethodCall(anyParameters, ..., ...) with static { ... } ?
 
    