Class BreakLocation


  • public class BreakLocation
    extends java.lang.Object
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  BreakLocation.Type  
    • Constructor Summary

      Constructors 
      Constructor Description
      BreakLocation​(ScriptId scriptId, java.lang.Integer lineNumber, java.util.Optional<java.lang.Integer> columnNumber, java.util.Optional<BreakLocation.Type> type)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Optional<java.lang.Integer> getColumnNumber()
      Column number in the script (0-based).
      java.lang.Integer getLineNumber()
      Line number in the script (0-based).
      ScriptId getScriptId()
      Script identifier as reported in the `Debugger.scriptParsed`.
      java.util.Optional<BreakLocation.Type> getType()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BreakLocation

        public BreakLocation​(ScriptId scriptId,
                             java.lang.Integer lineNumber,
                             java.util.Optional<java.lang.Integer> columnNumber,
                             java.util.Optional<BreakLocation.Type> type)
    • Method Detail

      • getScriptId

        public ScriptId getScriptId()
        Script identifier as reported in the `Debugger.scriptParsed`.
      • getLineNumber

        public java.lang.Integer getLineNumber()
        Line number in the script (0-based).
      • getColumnNumber

        public java.util.Optional<java.lang.Integer> getColumnNumber()
        Column number in the script (0-based).