public enum SortingOrder extends Enum<SortingOrder>
Enum Constant and Description |
---|
BRANCH_LIST |
CHANGES_TABLE |
COMMIT_MESSAGE |
CURRENT_BRANCH |
END |
NEW_TAG_PANEL |
REMOTE_CHANGES_TABLE |
TABLE_TITLE |
TAG_TABLE |
Modifier and Type | Method and Description |
---|---|
static SortingOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortingOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortingOrder CURRENT_BRANCH
public static final SortingOrder TABLE_TITLE
public static final SortingOrder REMOTE_CHANGES_TABLE
public static final SortingOrder CHANGES_TABLE
public static final SortingOrder COMMIT_MESSAGE
public static final SortingOrder BRANCH_LIST
public static final SortingOrder TAG_TABLE
public static final SortingOrder NEW_TAG_PANEL
public static final SortingOrder END
public static SortingOrder[] values()
for (SortingOrder c : SortingOrder.values()) System.out.println(c);
public static SortingOrder 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.