public static enum StructureCheckOptions.Type extends Enum<StructureCheckOptions.Type>
Enum Constant and Description |
---|
Accepted
Indicates, that the structure checker puts valid or fixed structures to the output file.
|
Discarded
Indicates, that the structure checker puts invalid structures to the discarded file.
|
Separated
Indicates, that the structure checker puts valid or fixed structures to the output file,
the others to the discarded file.
|
Single
Indicates, that the structure checker puts all structures to the output file.
|
Modifier and Type | Method and Description |
---|---|
static StructureCheckOptions.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructureCheckOptions.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureCheckOptions.Type Single
public static final StructureCheckOptions.Type Separated
public static final StructureCheckOptions.Type Accepted
public static final StructureCheckOptions.Type Discarded
public static StructureCheckOptions.Type[] values()
for (StructureCheckOptions.Type c : StructureCheckOptions.Type.values()) System.out.println(c);
public static StructureCheckOptions.Type 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