public enum LanguageMaintainedState extends Enum<LanguageMaintainedState>
| Enum Constant and Description |
|---|
ActivelyMaintained |
LookingForNewMaintainer |
| Modifier and Type | Method and Description |
|---|---|
static LanguageMaintainedState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LanguageMaintainedState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LanguageMaintainedState ActivelyMaintained
public static final LanguageMaintainedState LookingForNewMaintainer
public static LanguageMaintainedState[] values()
for (LanguageMaintainedState c : LanguageMaintainedState.values()) System.out.println(c);
public static LanguageMaintainedState 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 null