public static enum ClassProvider.ProvideFrom extends Enum<ClassProvider.ProvideFrom>
Generator should provide as input to the ClassProvider to determine the path to the merge class.| Enum Constant and Description |
|---|
INPUT_CLASS
The input class for the
Generator is required as input. |
PARENT_CONFIG_MERGE_CLASS
The merge class of the parent configuration is required as input.
|
SELF
Indicates the provider does not require any input because the class is already defined.
|
| Modifier and Type | Method and Description |
|---|---|
static ClassProvider.ProvideFrom |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassProvider.ProvideFrom[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassProvider.ProvideFrom SELF
public static final ClassProvider.ProvideFrom PARENT_CONFIG_MERGE_CLASS
public static final ClassProvider.ProvideFrom INPUT_CLASS
Generator is required as input.public static ClassProvider.ProvideFrom[] values()
for (ClassProvider.ProvideFrom c : ClassProvider.ProvideFrom.values()) System.out.println(c);
public static ClassProvider.ProvideFrom 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 © 2019. All rights reserved.