@satelitte03:
The private syntax is of multiple usage.
If a piece of code is needed multiple time in a class, you may make a private method from it. This will make your coding faster, bugfixing more easy, reading it faster. You may follow the rule 'oaoo' - Once, and only once.
If a method is growing big, you may split it into small logical entities. This will make your code more readable, testable, maintainable. Don't exceed one screenpage.
Think of an operation, which will succeed under certain preconditions, and fail with others.
And sometimes your class might guarantee these conditions, and sometimes not.
So you may put the operation into an private method, and call it directly, when the precondition matches, and check the condition only where uncertain.
seeking a job as java-programmer in Berlin: