public enum ChunkingMethod extends Enum<ChunkingMethod>
Enum Constant and Description |
---|
RDCAnalysis
File data is passed to the RDC Analysis chunking method.
|
SimpleAlgorithm
File data is passed to the Simple algorithm chunking method.
|
ZipAlgorithm
File data is passed to the Zip algorithm chunking method.
|
Modifier and Type | Method and Description |
---|---|
static ChunkingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChunkingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChunkingMethod ZipAlgorithm
public static final ChunkingMethod RDCAnalysis
public static final ChunkingMethod SimpleAlgorithm
public static ChunkingMethod[] values()
for (ChunkingMethod c : ChunkingMethod.values()) System.out.println(c);
public static ChunkingMethod 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 © 2007–2021 The Apache Software Foundation. All rights reserved.