public enum ConsumerLocation extends Enum<ConsumerLocation>
| Enum Constant and Description |
|---|
AFTER_ANNOTATION_PROCESSOR |
BEFORE_ANNOTATION_PROCESSOR |
ON_END |
ON_START |
| Modifier and Type | Method and Description |
|---|---|
static ConsumerLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConsumerLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsumerLocation ON_START
public static final ConsumerLocation ON_END
public static final ConsumerLocation BEFORE_ANNOTATION_PROCESSOR
public static final ConsumerLocation AFTER_ANNOTATION_PROCESSOR
public static ConsumerLocation[] values()
for (ConsumerLocation c : ConsumerLocation.values()) System.out.println(c);
public static ConsumerLocation 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 © 2023. All rights reserved.