public enum ConsolidatorType extends Enum<ConsolidatorType>
Enum Constant and Description |
---|
FLC
Field Level Consolidation: Consolidation is made at field level.
|
RLC
Record Level Consolidation: Consolidation is made at record level.
|
Modifier and Type | Method and Description |
---|---|
static ConsolidatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsolidatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsolidatorType FLC
public static final ConsolidatorType RLC
public static ConsolidatorType[] values()
for (ConsolidatorType c : ConsolidatorType.values()) System.out.println(c);
public static ConsolidatorType 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 © 2016. All Rights Reserved.