public static enum PartitionAcceptor.Return extends Enum<PartitionAcceptor.Return>
Enum Constant and Description |
---|
ACCEPT
Accept the partition.
|
SKIP
Skip over the partition.
|
STOP
Will not include the partition.
|
Modifier and Type | Method and Description |
---|---|
static PartitionAcceptor.Return |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PartitionAcceptor.Return[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PartitionAcceptor.Return ACCEPT
public static final PartitionAcceptor.Return SKIP
public static final PartitionAcceptor.Return STOP
public static PartitionAcceptor.Return[] values()
for (PartitionAcceptor.Return c : PartitionAcceptor.Return.values()) System.out.println(c);
public static PartitionAcceptor.Return 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 © 2024 Cask Data, Inc. Licensed under the Apache License, Version 2.0.