public static enum Dog.Sex extends Enum<Dog.Sex>
Modifier and Type | Method and Description |
---|---|
static Dog.Sex |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dog.Sex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dog.Sex MALE
public static final Dog.Sex FEMALE
public static Dog.Sex[] values()
for (Dog.Sex c : Dog.Sex.values()) System.out.println(c);
public static Dog.Sex 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 John's Hopkins University, Engineering Programs for Professionals. All rights reserved.