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