public enum LitterType extends java.lang.Enum<LitterType> implements java.io.Serializable
Enum Constant and Description |
---|
RECYCLABLE |
TRASH |
Modifier and Type | Field and Description |
---|---|
private int |
id |
static int |
LENGTH |
private static java.util.Random |
RANDOM |
private static LitterType[] |
VALUES |
Modifier and Type | Method and Description |
---|---|
int |
getID() |
static LitterType |
randomLitter()
Generates a random value from this enumerated type
|
static LitterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LitterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LitterType TRASH
public static final LitterType RECYCLABLE
private static final LitterType[] VALUES
public static final int LENGTH
private static final java.util.Random RANDOM
private int id
public static LitterType[] values()
for (LitterType c : LitterType.values()) System.out.println(c);
public static LitterType 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 nullpublic int getID()
public static LitterType randomLitter()