public enum SortNameType extends Enum<SortNameType>
Enum Constant and Description |
---|
INTERNAL_NAME |
LIST_NAME |
RUN_NAME |
SHOWCASE_NAME |
Modifier and Type | Method and Description |
---|---|
static SortNameType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortNameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortNameType INTERNAL_NAME
public static final SortNameType LIST_NAME
public static final SortNameType RUN_NAME
public static final SortNameType SHOWCASE_NAME
public static SortNameType[] values()
for (SortNameType c : SortNameType.values()) System.out.println(c);
public static SortNameType 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 © 2024. All rights reserved.