public enum ChildThreadType extends Enum<ChildThreadType>
| Enum Constant and Description |
|---|
MOVE_THREAD
Used by multithreaded incremental solving.
|
PART_THREAD
Used by
PartitionedSearchPhase. |
| Modifier and Type | Method and Description |
|---|---|
static ChildThreadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChildThreadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChildThreadType PART_THREAD
PartitionedSearchPhase.public static final ChildThreadType MOVE_THREAD
public static ChildThreadType[] values()
for (ChildThreadType c : ChildThreadType.values()) System.out.println(c);
public static ChildThreadType 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 © 2006–2021 JBoss by Red Hat. All rights reserved.