public enum PicType extends Enum<PicType>
Modifier and Type | Method and Description |
---|---|
abstract com.google.common.collect.ImmutableList<String> |
getFlags(Compiler compiler) |
static PicType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static PicType[] values()
for (PicType c : PicType.values()) System.out.println(c);
public static PicType 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 null