public static enum AnnotationUtilsTest.Stooge extends Enum<AnnotationUtilsTest.Stooge>
| Modifier and Type | Method and Description |
|---|---|
static AnnotationUtilsTest.Stooge |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationUtilsTest.Stooge[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationUtilsTest.Stooge MOE
public static final AnnotationUtilsTest.Stooge LARRY
public static final AnnotationUtilsTest.Stooge CURLY
public static final AnnotationUtilsTest.Stooge JOE
public static final AnnotationUtilsTest.Stooge SHEMP
public static AnnotationUtilsTest.Stooge[] values()
for (AnnotationUtilsTest.Stooge c : AnnotationUtilsTest.Stooge.values()) System.out.println(c);
public static AnnotationUtilsTest.Stooge 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 © 2001-2013 The Apache Software Foundation. All Rights Reserved.