saker.java.compiler Documentation TaskDoc JavaDoc Packages
public final class JavaDebugInfoType
Enumeration for specifying the kind of debugging information that should be included in generated class files.

The debug info types are interpreted in a case-insensitive manner.

Corresponds to the -g option for javac.

Fields
public static final String
all = "all"
Includes all debugging information in the generated class files.
public static final String
lines = "lines"
Includes line number debugging information in the generated class files.
public static final String
none = "none"
Includes no debugging information in the generated class files.
public static final String
source = "source"
Includes source file debugging information in the generated class files.
public static final String
vars = "vars"
Includes local variable debugging information in the generated class files.
public static final String all = "all"
Includes all debugging information in the generated class files.
public static final String lines = "lines"
Includes line number debugging information in the generated class files.
public static final String none = "none"
Includes no debugging information in the generated class files.
public static final String source = "source"
Includes source file debugging information in the generated class files.
public static final String vars = "vars"
Includes local variable debugging information in the generated class files.