public static enum AnalysisSettings.PreprocessingType extends Enum<AnalysisSettings.PreprocessingType>
| Enum Constant and Description |
|---|
NONE |
NONPRECISE |
PRECISE |
| Modifier and Type | Method and Description |
|---|---|
static AnalysisSettings.PreprocessingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnalysisSettings.PreprocessingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalysisSettings.PreprocessingType NONE
public static final AnalysisSettings.PreprocessingType PRECISE
public static final AnalysisSettings.PreprocessingType NONPRECISE
public static AnalysisSettings.PreprocessingType[] values()
for (AnalysisSettings.PreprocessingType c : AnalysisSettings.PreprocessingType.values()) System.out.println(c);
public static AnalysisSettings.PreprocessingType 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 nullCopyright © 2021. All rights reserved.