All Downloads are FREE. Search and download functionalities are using the official Maven repository.

editor.debugger.BreakpointKind Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package editor.debugger;

/**
 */
public enum BreakpointKind
{
  Line( "Line" ),
  Exception( "Exception" ),
  Method( "Method" ),
  Field( "Field Watchpoint" );

  private final String _name;

  BreakpointKind( String name )
  {
    _name = name;
  }

  public String getName()
  {
    return _name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy