public enum MagicContext extends Enum<MagicContext>
| Enum Constant and Description |
|---|
ANT_BUILDER
Context value will be replaced by a
groovy.util.AntBuilder instance. |
| Modifier and Type | Method and Description |
|---|---|
static MagicContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MagicContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MagicContext ANT_BUILDER
groovy.util.AntBuilder instance.public static MagicContext[] values()
for (MagicContext c : MagicContext.values()) System.out.println(c);
public static MagicContext 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 © 2006-2013 Codehaus. All Rights Reserved.