public enum TestPropertyOrigin extends Enum<TestPropertyOrigin>
| Enum Constant and Description |
|---|
DEFAULTS
The property is the same as the original defaults
|
RUN
The property has been changed at the test run level
|
TEST
The property was changed at the test level
|
| Modifier and Type | Method and Description |
|---|---|
static TestPropertyOrigin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestPropertyOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestPropertyOrigin DEFAULTS
public static final TestPropertyOrigin TEST
public static final TestPropertyOrigin RUN
public static TestPropertyOrigin[] values()
for (TestPropertyOrigin c : TestPropertyOrigin.values()) System.out.println(c);
public static TestPropertyOrigin 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 © 2005–2018 Alfresco Software. All rights reserved.