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