public enum Asm_Enum extends Enum<Asm_Enum>
| Modifier and Type | Method and Description |
|---|---|
static Asm_Enum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Asm_Enum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Asm_Enum Moe
public static final Asm_Enum Larry
public static final Asm_Enum Curly
public static Asm_Enum[] values()
for (Asm_Enum c : Asm_Enum.values()) System.out.println(c);
public static Asm_Enum 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 © 2015. All rights reserved.