public static enum ComboExtract.Op extends Enum<ComboExtract.Op>
Enum Constant and Description |
---|
And
All extractors will be arranged as a pipeline.
|
Or
All extractors will do extracting separately,
and the results of extractors will combined as the final result. |
Modifier and Type | Method and Description |
---|---|
static ComboExtract.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComboExtract.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComboExtract.Op And
public static final ComboExtract.Op Or
public static ComboExtract.Op[] values()
for (ComboExtract.Op c : ComboExtract.Op.values()) System.out.println(c);
public static ComboExtract.Op 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 © 2017. All rights reserved.