public static enum Axolotl.Variant extends Enum<Axolotl.Variant>
Enum Constant and Description |
---|
BLUE
Blue axolotl.
|
CYAN
Cyan axolotl.
|
GOLD
Gold axolotl.
|
LUCY
Leucistic (pink) axolotl.
|
WILD
Brown axolotl.
|
Modifier and Type | Method and Description |
---|---|
static Axolotl.Variant |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Axolotl.Variant[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Axolotl.Variant LUCY
public static final Axolotl.Variant WILD
public static final Axolotl.Variant GOLD
public static final Axolotl.Variant CYAN
public static final Axolotl.Variant BLUE
public static Axolotl.Variant[] values()
for (Axolotl.Variant c : Axolotl.Variant.values()) System.out.println(c);
public static Axolotl.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 © 2022. All rights reserved.