public enum TabBehaviour extends Enum<TabBehaviour>
Screen
Enum Constant and Description |
---|
ALIGN_TO_COLUMN_4 |
ALIGN_TO_COLUMN_8 |
CONVERT_TO_EIGHT_SPACES |
CONVERT_TO_FOUR_SPACES |
CONVERT_TO_ONE_SPACE |
Modifier and Type | Method and Description |
---|---|
String |
replaceTabs(String string,
int x) |
static TabBehaviour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TabBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TabBehaviour CONVERT_TO_ONE_SPACE
public static final TabBehaviour CONVERT_TO_FOUR_SPACES
public static final TabBehaviour CONVERT_TO_EIGHT_SPACES
public static final TabBehaviour ALIGN_TO_COLUMN_4
public static final TabBehaviour ALIGN_TO_COLUMN_8
public static TabBehaviour[] values()
for (TabBehaviour c : TabBehaviour.values()) System.out.println(c);
public static TabBehaviour 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 © 2015. All Rights Reserved.