public static enum Application.EnumEcosystem extends Enum<Application.EnumEcosystem>
Enum Constant and Description |
---|
VALUE_GAME |
VALUE_NON_GAME |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Application.EnumEcosystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Application.EnumEcosystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Application.EnumEcosystem VALUE_GAME
public static final Application.EnumEcosystem VALUE_NON_GAME
public static Application.EnumEcosystem[] values()
for (Application.EnumEcosystem c : Application.EnumEcosystem.values()) System.out.println(c);
public static Application.EnumEcosystem 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 nullpublic String toString()
toString
in class Enum<Application.EnumEcosystem>
Copyright © 2020. All rights reserved.