public static enum AddonProcessor.ExecutionKind extends Enum<AddonProcessor.ExecutionKind>
| Enum Constant and Description |
|---|
Full
Full execution means processor must generate all files; preceding generated files have been cleared.
|
Incremental
Incremental execution means the processor can generate a subset of files.
|
| Modifier and Type | Method and Description |
|---|---|
static AddonProcessor.ExecutionKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AddonProcessor.ExecutionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddonProcessor.ExecutionKind Full
public static final AddonProcessor.ExecutionKind Incremental
public static AddonProcessor.ExecutionKind 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 nullpublic static AddonProcessor.ExecutionKind[] values()
for (AddonProcessor.ExecutionKind c : AddonProcessor.ExecutionKind.values()) System.out.println(c);