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