public enum TestValidatorType extends java.lang.Enum<TestValidatorType>
| Enum Constant and Description |
|---|
MESSAGE_VALIDATOR
Used to validate compiler messages.
|
RESOURCE_VALIDATOR
Used to validate created resources.
|
| Modifier and Type | Method and Description |
|---|---|
static TestValidatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TestValidatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestValidatorType MESSAGE_VALIDATOR
public static final TestValidatorType RESOURCE_VALIDATOR
public static TestValidatorType[] values()
for (TestValidatorType c : TestValidatorType.values()) System.out.println(c);
public static TestValidatorType 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 namejava.lang.NullPointerException - if the argument is nullCopyright © 2017 Holisticon AG. All Rights Reserved.