public enum SortMode extends Enum<SortMode>
Modifier and Type | Method and Description |
---|---|
static SortMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortMode single
public static final SortMode multi
public static SortMode[] values()
for (SortMode c : SortMode.values()) System.out.println(c);
public static SortMode 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 © 2014 JBoss by Red Hat. All Rights Reserved.