public enum ValidityMode extends Enum<ValidityMode>
| Modifier and Type | Method and Description |
|---|---|
static ValidityMode |
forName(String text) |
static ValidityMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidityMode STRICT
public static final ValidityMode LAX
public static final ValidityMode CUTOFF
public static ValidityMode[] values()
for (ValidityMode c : ValidityMode.values()) System.out.println(c);
public static ValidityMode 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 static ValidityMode forName(String text)
Copyright © 2020. All rights reserved.