public enum GuiContentType extends java.lang.Enum<GuiContentType>
| Enum Constant and Description |
|---|
BULLETIN
A UI displaying only APRS text messages that are broadcast bulletins.
|
TEXT_MESSAGE
A UI displaying only APRS text messages (code ':').
|
| Modifier and Type | Method and Description |
|---|---|
static GuiContentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GuiContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GuiContentType TEXT_MESSAGE
public static final GuiContentType BULLETIN
public static GuiContentType[] values()
for (GuiContentType c : GuiContentType.values()) System.out.println(c);
public static GuiContentType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null