|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<RunStatField>
com.epochx.stats.RunStatField
public enum RunStatField
This enum gives all the available run statistics that can be requested. Run statistics are those statistics that are generated at the end of each run. Each RunStatField has a datatype related to it which is the type which the data will be returned in.
RunStatListener,
CrossoverStatField,
MutationStatField,
GenerationStatField| Enum Constant Summary | |
|---|---|
BEST_FITNESS
Requests a Double which is the fitness of the BEST_PROGRAM. |
|
BEST_PROGRAM
Requests a CandidateProgram which has the 'best' fitness over a whole run. |
|
RUN_TIME
Requests a Long which is the length of time in nanoseconds that the run took to complete. |
|
| Method Summary | |
|---|---|
static RunStatField |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RunStatField[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final RunStatField BEST_PROGRAM
public static final RunStatField BEST_FITNESS
public static final RunStatField RUN_TIME
| Method Detail |
|---|
public static RunStatField[] values()
for (RunStatField c : RunStatField.values()) System.out.println(c);
public static RunStatField valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||