public static enum ConsumerConfigConstants.EFORegistrationType extends Enum<ConsumerConfigConstants.EFORegistrationType>
| Enum Constant and Description |
|---|
EAGER
Register the EFO consumer eagerly in job manager/client.
|
LAZY
Delay the registration of EFO consumer for task manager to execute.
|
NONE
Do not register or deregister EFO consumer.
|
| Modifier and Type | Method and Description |
|---|---|
static ConsumerConfigConstants.EFORegistrationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsumerConfigConstants.EFORegistrationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsumerConfigConstants.EFORegistrationType LAZY
public static final ConsumerConfigConstants.EFORegistrationType EAGER
public static final ConsumerConfigConstants.EFORegistrationType NONE
public static ConsumerConfigConstants.EFORegistrationType[] values()
for (ConsumerConfigConstants.EFORegistrationType c : ConsumerConfigConstants.EFORegistrationType.values()) System.out.println(c);
public static ConsumerConfigConstants.EFORegistrationType 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 © 2014–2022 The Apache Software Foundation. All rights reserved.