public enum WeaveLifecycle extends Enum<WeaveLifecycle>
| Enum Constant and Description | 
|---|
CLEAN
Depicts the 'clean' stage of the lifecycle. 
 | 
WEAVE
Depicts the 'weave' stage of the lifecycle. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static WeaveLifecycle | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static WeaveLifecycle[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final WeaveLifecycle CLEAN
public static final WeaveLifecycle WEAVE
public static WeaveLifecycle[] values()
for (WeaveLifecycle c : WeaveLifecycle.values()) System.out.println(c);
public static WeaveLifecycle 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 © 2018 The Apache Software Foundation. All rights reserved.