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