TestRoots/watchdog

View on GitHub
core/src/nl/tudelft/watchdog/core/logic/breakpoint/BreakpointType.java

Summary

Maintainability
A
40 mins
Test Coverage
package nl.tudelft.watchdog.core.logic.breakpoint;

import com.google.gson.annotations.SerializedName;

/** The different types a breakpoint may have. */
public enum BreakpointType {
    /** A line breakpoint. */
    @SerializedName("li")
    LINE,

    /** An exception breakpoint. */
    @SerializedName("ex")
    EXCEPTION,

    /** A field breakpoint. */
    @SerializedName("fi")
    FIELD,

    /** A method breakpoint. */
    @SerializedName("me")
    METHOD,

    /** A class prepare breakpoint. */
    @SerializedName("cp")
    CLASS,

    /** An undefined breakpoint. */
    @SerializedName("un")
    UNDEFINED;
}