public enum TabsAlign extends Enum<TabsAlign>
| Enum Constant and Description |
|---|
CENTER
Tabs headers will be aligned to the center of the tab panel
|
LEFT
Tabs headers will be aligned to the left of the tab panel
|
RIGHT
Tabs headers will be aligned to the right of the tab panel
|
| Modifier and Type | Method and Description |
|---|---|
String |
getAlign() |
static TabsAlign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TabsAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TabsAlign LEFT
public static final TabsAlign CENTER
public static final TabsAlign RIGHT
public static TabsAlign[] values()
for (TabsAlign c : TabsAlign.values()) System.out.println(c);
public static TabsAlign 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 nullpublic String getAlign()
Copyright © 2019–2022 Dominokit. All rights reserved.