Line Breakpoint
These breakpoints are assigned to the lines of source code and are used to target a particular section for debugging.
Method Breakpoint
Method breakpoints act in response to the program entering or exiting a particular method. They let you target your debugging sessions by method you wish to investigate, rather than by line number. Method breakpoints let you follow the program flow at the method level as well as check entry and exit conditions. Note that using method breakpoints can slow down the application you are debugging.
Exception Breakpoint
Exception breakpoints are triggered when the specified exception is thrown. Unlike the line breakpoints, which require specific source references, exception breakpoints apply globally to the exception condition, rather than to a particular code reference.
Field Watchpoint
Field watchpoints allow you to react to any access or modification of specific instance variables. For example, if at the end of a complicated process you are ending up with an obviously wrong value on one of your fields, then setting up a field watchpoint may be the quickest way to determine the origin of the fault.
JavaScript / Flex /PHP Breakpoints
The following is available only in the Ultimate edition of IntelliJ IDEAJavaScript, Flex, and PHP breakpoints are identical to line breakpoints in Java.
These breakpoints are assigned to particular lines of JavaScript or PHP source code. They can be set in *.html files as well as in *.js or *.php files and are used to target a particular section of code for debugging.


