public enum CoprocessorBehavior extends Enum<CoprocessorBehavior>
| Enum Constant and Description |
|---|
RAW_SCAN |
SCAN |
SCAN_FILTER |
SCAN_FILTER_AGGR |
SCAN_FILTER_AGGR_CHECKMEM |
| Modifier and Type | Method and Description |
|---|---|
static CoprocessorBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoprocessorBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoprocessorBehavior RAW_SCAN
public static final CoprocessorBehavior SCAN
public static final CoprocessorBehavior SCAN_FILTER
public static final CoprocessorBehavior SCAN_FILTER_AGGR
public static final CoprocessorBehavior SCAN_FILTER_AGGR_CHECKMEM
public static CoprocessorBehavior[] values()
for (CoprocessorBehavior c : CoprocessorBehavior.values()) System.out.println(c);
public static CoprocessorBehavior 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 © 2014–2016 Apache Software Foundation. All rights reserved.