public static enum Assert.EvaluateOn extends Enum<Assert.EvaluateOn>
| Enum Constant and Description | 
|---|
ever
Prüfung wird immer auasgeführt 
 | 
firstError
wenn ein Fehler bereits vorhanden ist, wird die Prüfung nicht ausgeführt 
 | 
firstPropertyError
wenn ein Fehler für das gleiche Property bereits vorhanden ist, wird die Prüfung nicht
 ausgeführt 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Assert.EvaluateOn | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Assert.EvaluateOn[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Assert.EvaluateOn ever
public static final Assert.EvaluateOn firstError
public static final Assert.EvaluateOn firstPropertyError
public static Assert.EvaluateOn[] values()
for (Assert.EvaluateOn c : Assert.EvaluateOn.values()) System.out.println(c);
public static Assert.EvaluateOn 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.