In bundle: saker.java.compiler-api
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.
Summary
all | Includes all debugging information in the generated class files. |
lines | Includes line number debugging information in the generated class files. |
none | Includes no debugging information in the generated class files. |
source | Includes source file debugging information in the generated class files. |
vars | Includes local variable debugging information in the generated class files. |
Enumeration values
Includes all debugging information in the generated class files.
Includes line number debugging information in the generated class files.
Includes no debugging information in the generated class files.
Includes source file debugging information in the generated class files.
Includes local variable debugging information in the generated class files.