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