public static enum StructureCheckOptions.Mode extends Enum<StructureCheckOptions.Mode>
Enum Constant and Description |
---|
Check
Indicates, that the structurechecker does not automatically fixes.
|
Fix
Indicates, that the structurechecker does automatically fix.
|
Modifier and Type | Method and Description |
---|---|
static StructureCheckOptions.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructureCheckOptions.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureCheckOptions.Mode Check
public static final StructureCheckOptions.Mode Fix
public static StructureCheckOptions.Mode[] values()
for (StructureCheckOptions.Mode c : StructureCheckOptions.Mode.values()) System.out.println(c);
public static StructureCheckOptions.Mode 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