Serializable, Comparable<SymbolicExecutionMode>public enum SymbolicExecutionMode extends Enum<SymbolicExecutionMode>
| Enum Constant | Description |
|---|---|
DISABLED |
|
ENABLED |
|
ENABLED_WITHOUT_X_FILE |
| Modifier and Type | Method | Description |
|---|---|---|
static SymbolicExecutionMode |
getMode(JavaCheck[] visitors,
boolean xFileEnabled) |
|
boolean |
isCrossFileEnabled() |
|
boolean |
isEnabled() |
|
static SymbolicExecutionMode |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static SymbolicExecutionMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymbolicExecutionMode DISABLED
public static final SymbolicExecutionMode ENABLED_WITHOUT_X_FILE
public static final SymbolicExecutionMode ENABLED
public static SymbolicExecutionMode[] values()
for (SymbolicExecutionMode c : SymbolicExecutionMode.values()) System.out.println(c);
public static SymbolicExecutionMode 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 nullpublic static SymbolicExecutionMode getMode(JavaCheck[] visitors, boolean xFileEnabled)
public boolean isEnabled()
public boolean isCrossFileEnabled()
Copyright © 2012–2018 SonarSource. All rights reserved.