public static enum CollectionFieldExpressionValidator.Mode extends Enum<CollectionFieldExpressionValidator.Mode>
| Enum Constant and Description |
|---|
ALL
toutes les valeurs de la collection doivent etre valides
|
AT_LEAST_ONE
au moins une entrée de la collection doit etre valide
|
EXACTLY_ONE
exactement une entrée dela collection doit être valide
|
NONE
aucune valeur de la collection doivent etre valides
|
UNIQUE_KEY
detection de clef unique
|
| Modifier and Type | Method and Description |
|---|---|
static CollectionFieldExpressionValidator.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollectionFieldExpressionValidator.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectionFieldExpressionValidator.Mode AT_LEAST_ONE
public static final CollectionFieldExpressionValidator.Mode EXACTLY_ONE
public static final CollectionFieldExpressionValidator.Mode ALL
public static final CollectionFieldExpressionValidator.Mode NONE
public static final CollectionFieldExpressionValidator.Mode UNIQUE_KEY
public static CollectionFieldExpressionValidator.Mode[] values()
for (CollectionFieldExpressionValidator.Mode c : CollectionFieldExpressionValidator.Mode.values()) System.out.println(c);
public static CollectionFieldExpressionValidator.Mode 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 © 2013–2017 CodeLutin. All rights reserved.