public enum Constraint extends java.lang.Enum<Constraint>
| Enum Constant and Description |
|---|
DIGITS |
DUPLICATES |
LENGTH |
LOWER |
MIN |
SPECIAL |
UPPER |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
static Constraint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constraint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constraint LENGTH
public static final Constraint UPPER
public static final Constraint LOWER
public static final Constraint DIGITS
public static final Constraint SPECIAL
public static final Constraint DUPLICATES
public static final Constraint MIN
public static Constraint[] values()
for (Constraint c : Constraint.values()) System.out.println(c);
public static Constraint 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 nullpublic java.lang.String getValue()
Copyright © 2019 Bosch Software Innovations GmbH. All Rights Reserved.