Serializable, Comparable<MushroomCow.Variant>public static enum MushroomCow.Variant extends Enum<MushroomCow.Variant>
| Enum Constant | Description | 
|---|---|
| BROWN | Brown mushroom cow. | 
| RED | Red mushroom cow. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static MushroomCow.Variant | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static MushroomCow.Variant[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MushroomCow.Variant RED
public static final MushroomCow.Variant BROWN
public static MushroomCow.Variant[] values()
for (MushroomCow.Variant c : MushroomCow.Variant.values()) System.out.println(c);
public static MushroomCow.Variant 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 © 2020. All rights reserved.