public enum LocalStrategy extends Enum<LocalStrategy>
| Enum Constant and Description |
|---|
COMBININGSORT |
NONE |
SORT |
| Modifier and Type | Method and Description |
|---|---|
boolean |
dams() |
boolean |
requiresComparator() |
static LocalStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocalStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalStrategy NONE
public static final LocalStrategy SORT
public static final LocalStrategy COMBININGSORT
public static LocalStrategy[] values()
for (LocalStrategy c : LocalStrategy.values()) System.out.println(c);
public static LocalStrategy 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 nullpublic boolean dams()
public boolean requiresComparator()
Copyright © 2014–2023 The Apache Software Foundation. All rights reserved.