public enum ExhaustiveSearchType extends Enum<ExhaustiveSearchType>
| Enum Constant and Description |
|---|
BRANCH_AND_BOUND |
BRUTE_FORCE |
| Modifier and Type | Method and Description |
|---|---|
EntitySorterManner |
getDefaultEntitySorterManner() |
ValueSorterManner |
getDefaultValueSorterManner() |
boolean |
isScoreBounderEnabled() |
static ExhaustiveSearchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExhaustiveSearchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExhaustiveSearchType BRUTE_FORCE
public static final ExhaustiveSearchType BRANCH_AND_BOUND
public static ExhaustiveSearchType[] values()
for (ExhaustiveSearchType c : ExhaustiveSearchType.values()) System.out.println(c);
public static ExhaustiveSearchType 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 EntitySorterManner getDefaultEntitySorterManner()
public ValueSorterManner getDefaultValueSorterManner()
public boolean isScoreBounderEnabled()
Copyright © 2006–2021 JBoss by Red Hat. All rights reserved.