public static enum AggBinaryOp.SparkAggType extends Enum<AggBinaryOp.SparkAggType>
Enum Constant and Description |
---|
MULTI_BLOCK |
NONE |
SINGLE_BLOCK |
Modifier and Type | Method and Description |
---|---|
static AggBinaryOp.SparkAggType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggBinaryOp.SparkAggType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggBinaryOp.SparkAggType NONE
public static final AggBinaryOp.SparkAggType SINGLE_BLOCK
public static final AggBinaryOp.SparkAggType MULTI_BLOCK
public static AggBinaryOp.SparkAggType[] values()
for (AggBinaryOp.SparkAggType c : AggBinaryOp.SparkAggType.values()) System.out.println(c);
public static AggBinaryOp.SparkAggType 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 © 2020 The Apache Software Foundation. All rights reserved.