public enum ReducingMethod extends Enum<ReducingMethod>
| Enum Constant and Description |
|---|
MERGE_FEATURES_BY_ID
Merge features if they have same ID so scenarios will be merged into one scenario.
|
SKIP_EMPTY_JSON_FILES
Skips JSON reports which have been parsed but have none features or are empty file at all.
|
| Modifier and Type | Method and Description |
|---|---|
static ReducingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReducingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReducingMethod MERGE_FEATURES_BY_ID
public static final ReducingMethod SKIP_EMPTY_JSON_FILES
public static ReducingMethod[] values()
for (ReducingMethod c : ReducingMethod.values()) System.out.println(c);
public static ReducingMethod 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 © 2018. All rights reserved.