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