It probably refers to the access right of the method, the return value of the method, the method name and the parameter list.
Private double doAdd(double d 1, double d2){
Returns d1+d2;
}
Private refers to access to methods.
Double is the return value of the method.
DoAdd is the name of the method.
Doubledd1,double d2 is the parameter list of the method.