public enum OpenAccessColor extends Enum<OpenAccessColor>
| Modifier and Type | Method and Description |
|---|---|
static OpenAccessColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpenAccessColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenAccessColor gold
public static final OpenAccessColor hybrid
public static final OpenAccessColor bronze
public static OpenAccessColor[] values()
for (OpenAccessColor c : OpenAccessColor.values()) System.out.println(c);
public static OpenAccessColor 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 © 2025. All rights reserved.