public static enum DataProviderStrategy.Order extends Enum<DataProviderStrategy.Order>
| Enum Constant and Description |
|---|
HEAVY_FIRST
Constructors with more parameters have precedence
|
LIGHT_FIRST
Constructors with less parameters have precedence
|
| Modifier and Type | Method and Description |
|---|---|
static DataProviderStrategy.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataProviderStrategy.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataProviderStrategy.Order HEAVY_FIRST
public static final DataProviderStrategy.Order LIGHT_FIRST
public static DataProviderStrategy.Order[] values()
for (DataProviderStrategy.Order c : DataProviderStrategy.Order.values()) System.out.println(c);
public static DataProviderStrategy.Order 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 © 2015. All rights reserved.