public enum ValidatorPriority extends Enum<ValidatorPriority>
| Enum Constant and Description | 
|---|
| CONTEXTUAL_VALIDATOR | 
| MAX_PRIORITY | 
| NORMAL_PRIORITY | 
| Modifier and Type | Field and Description | 
|---|---|
| static Comparator<PriorityGetter> | COMPARATOR | 
| Modifier and Type | Method and Description | 
|---|---|
| static ValidatorPriority | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ValidatorPriority[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ValidatorPriority MAX_PRIORITY
public static final ValidatorPriority NORMAL_PRIORITY
public static final ValidatorPriority CONTEXTUAL_VALIDATOR
public static final Comparator<PriorityGetter> COMPARATOR
public static ValidatorPriority[] values()
for (ValidatorPriority c : ValidatorPriority.values()) System.out.println(c);
public static ValidatorPriority 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 © 2023 Eclipse. All rights reserved.