public enum ValidatorPriority extends Enum<ValidatorPriority>
| Enum Constant and Description |
|---|
MAX_PRIORITY |
MIN_PRIORITY |
| Modifier and Type | Field and Description |
|---|---|
static Comparator<Validator> |
VALIDATOR_COMPARATOR |
| Modifier and Type | Method and Description |
|---|---|
Integer |
getPriority() |
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 MIN_PRIORITY
public static Comparator<Validator> VALIDATOR_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 nullpublic Integer getPriority()
Copyright © 2020 Eclipse. All rights reserved.