public enum EEconomicCareer extends Enum<EEconomicCareer> implements IEconomicCareer
| Enum Constant and Description |
|---|
AMAZING |
CLEVER |
EXPERIENCED |
HONEST |
INEXPERIENCED |
SMART |
STRENUOUS |
SUCCESSFUL |
| Modifier and Type | Method and Description |
|---|---|
static EEconomicCareer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EEconomicCareer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EEconomicCareer INEXPERIENCED
public static final EEconomicCareer HONEST
public static final EEconomicCareer STRENUOUS
public static final EEconomicCareer EXPERIENCED
public static final EEconomicCareer SUCCESSFUL
public static final EEconomicCareer CLEVER
public static final EEconomicCareer SMART
public static final EEconomicCareer AMAZING
public static EEconomicCareer[] values()
for (EEconomicCareer c : EEconomicCareer.values()) System.out.println(c);
public static EEconomicCareer 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 © 2011-2018 Sahits GmbH. All Rights Reserved.