public static enum IEnricher.EnricherScope extends Enum<IEnricher.EnricherScope>
Enum Constant and Description |
---|
NONE
None: Never executed in integration job
|
POST_CONSO
Post consolidation only: Enricher is executed on consolidated data
|
PRE_CONSO
Pre consolidation only: Enricher is executed on source data
|
PRE_POST
Pre and post consolidation: Enricher is executed both on source data
and on consolidated data
|
Modifier and Type | Method and Description |
---|---|
static IEnricher.EnricherScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IEnricher.EnricherScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IEnricher.EnricherScope NONE
public static final IEnricher.EnricherScope POST_CONSO
public static final IEnricher.EnricherScope PRE_CONSO
public static final IEnricher.EnricherScope PRE_POST
public static IEnricher.EnricherScope[] values()
for (IEnricher.EnricherScope c : IEnricher.EnricherScope.values()) System.out.println(c);
public static IEnricher.EnricherScope 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.