public static enum Properties.RankingType extends Enum<Properties.RankingType>
| Enum Constant and Description |
|---|
FAST_NON_DOMINATED_SORTING |
PREFERENCE_SORTING |
| Modifier and Type | Method and Description |
|---|---|
static Properties.RankingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Properties.RankingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Properties.RankingType PREFERENCE_SORTING
public static final Properties.RankingType FAST_NON_DOMINATED_SORTING
public static Properties.RankingType[] values()
for (Properties.RankingType c : Properties.RankingType.values()) System.out.println(c);
public static Properties.RankingType 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 © 2010–2017 EvoSuite. All rights reserved.