public class SourceBreakpoint extends JSONBase
| Modifier and Type | Method and Description |
|---|---|
static SourceBreakpoint |
create(Integer line) |
boolean |
equals(Object obj) |
Integer |
getColumn()
An optional source column of the breakpoint.
|
String |
getCondition()
An optional expression for conditional breakpoints.
|
String |
getHitCondition()
An optional expression that controls how many hits of the breakpoint are ignored.
|
int |
getLine()
The source line of the breakpoint or logpoint.
|
String |
getLogMessage()
If this attribute exists and is non-empty, the backend must not 'break' (stop) but log the
message instead.
|
int |
hashCode() |
SourceBreakpoint |
setColumn(Integer column) |
SourceBreakpoint |
setCondition(String condition) |
SourceBreakpoint |
setHitCondition(String hitCondition) |
SourceBreakpoint |
setLine(int line) |
SourceBreakpoint |
setLogMessage(String logMessage) |
public int getLine()
public SourceBreakpoint setLine(int line)
public Integer getColumn()
public SourceBreakpoint setColumn(Integer column)
public String getCondition()
public SourceBreakpoint setCondition(String condition)
public String getHitCondition()
public SourceBreakpoint setHitCondition(String hitCondition)
public String getLogMessage()
public SourceBreakpoint setLogMessage(String logMessage)
public static SourceBreakpoint create(Integer line)