public enum EnumIncenses extends java.lang.Enum<EnumIncenses>
Enum Constant and Description |
---|
fullIncense |
laxIncense |
luckIncense |
oddIncense |
pureIncense |
rockIncense |
roseIncense |
seaIncense |
waveIncense |
Modifier and Type | Method and Description |
---|---|
static EnumIncenses |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumIncenses[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumIncenses oddIncense
public static final EnumIncenses rockIncense
public static final EnumIncenses seaIncense
public static final EnumIncenses waveIncense
public static final EnumIncenses roseIncense
public static final EnumIncenses pureIncense
public static final EnumIncenses luckIncense
public static final EnumIncenses laxIncense
public static final EnumIncenses fullIncense
public static EnumIncenses[] values()
for (EnumIncenses c : EnumIncenses.values()) System.out.println(c);
public static EnumIncenses valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null