Sort
is deprecated.@Deprecated public enum SortType extends Enum<SortType>
Enum Constant and Description |
---|
COMPARATOR
Deprecated.
The collection is sorted using a supplied comparator.
|
NATURAL
Deprecated.
The collection is sorted using its natural sorting.
|
UNSORTED
Deprecated.
The collection is unsorted.
|
Modifier and Type | Method and Description |
---|---|
static SortType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static SortType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortType UNSORTED
public static final SortType NATURAL
public static final SortType COMPARATOR
public static SortType[] values()
for (SortType c : SortType.values()) System.out.println(c);
public static SortType 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 JBoss by Red Hat. All rights reserved.