public static enum WholeProgramInference.OutputFormat extends Enum<WholeProgramInference.OutputFormat>
Enum Constant and Description |
---|
AJAVA
Output the results of whole-program inference as an ajava file that can be read in using the
-Aajava option.
|
JAIF
Output the results of whole-program inference as a Java annotation index file.
|
STUB
Output the results of whole-program inference as a stub file that can be parsed back into the
Checker Framework by the Stub Parser.
|
Modifier and Type | Method and Description |
---|---|
static WholeProgramInference.OutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WholeProgramInference.OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WholeProgramInference.OutputFormat STUB
public static final WholeProgramInference.OutputFormat JAIF
public static final WholeProgramInference.OutputFormat AJAVA
public static WholeProgramInference.OutputFormat[] values()
for (WholeProgramInference.OutputFormat c : WholeProgramInference.OutputFormat.values()) System.out.println(c);
public static WholeProgramInference.OutputFormat valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null