public enum ClientState extends Enum<ClientState>
| Enum Constant and Description |
|---|
ASSERTION_GENERATION |
CARVING |
COVERAGE_ANALYSIS |
DONE |
FINISHED |
INITIALIZATION |
INLINING |
JUNIT_CHECK |
MINIMIZATION |
MINIMIZING_VALUES |
NOT_STARTED |
SEARCH |
STARTED |
WRITING_STATISTICS |
WRITING_TESTS |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
int |
getEndProgress() |
String |
getName() |
int |
getNumPhase() |
int |
getOverallProgress() |
int |
getPhaseProgress() |
int |
getStartProgress() |
void |
setProgressOfPhase(float progress) |
static ClientState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientState NOT_STARTED
public static final ClientState STARTED
public static final ClientState INITIALIZATION
public static final ClientState CARVING
public static final ClientState SEARCH
public static final ClientState INLINING
public static final ClientState MINIMIZING_VALUES
public static final ClientState MINIMIZATION
public static final ClientState COVERAGE_ANALYSIS
public static final ClientState ASSERTION_GENERATION
public static final ClientState JUNIT_CHECK
public static final ClientState WRITING_TESTS
public static final ClientState WRITING_STATISTICS
public static final ClientState DONE
public static final ClientState FINISHED
public static ClientState[] values()
for (ClientState c : ClientState.values()) System.out.println(c);
public static ClientState 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 String getName()
public String getDescription()
public int getNumPhase()
public int getOverallProgress()
public int getStartProgress()
public int getEndProgress()
public int getPhaseProgress()
public void setProgressOfPhase(float progress)
Copyright © 2010–2017 EvoSuite. All rights reserved.