public enum MockDataSource extends Enum<MockDataSource>
| Enum Constant and Description |
|---|
CUSTOM_KEYWORD |
DEFAULT |
KEYWORD |
MIN_MAX_RANGE |
MOCK_FACTORY |
OF_SET |
| Modifier and Type | Method and Description |
|---|---|
static MockDataSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MockDataSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MockDataSource DEFAULT
public static final MockDataSource KEYWORD
public static final MockDataSource CUSTOM_KEYWORD
public static final MockDataSource OF_SET
public static final MockDataSource MIN_MAX_RANGE
public static final MockDataSource MOCK_FACTORY
public static MockDataSource[] values()
for (MockDataSource c : MockDataSource.values()) System.out.println(c);
public static MockDataSource 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 © 2019. All rights reserved.