
public enum ValidationResult extends Enum<ValidationResult>
| Enum Constant and Description |
|---|
ALREADY_PRESENT |
ALREADY_PROMISED |
MISSING_PREVIOUS |
VALID |
| Modifier and Type | Method and Description |
|---|---|
static ValidationResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationResult VALID
public static final ValidationResult ALREADY_PROMISED
public static final ValidationResult MISSING_PREVIOUS
public static final ValidationResult ALREADY_PRESENT
public static ValidationResult[] values()
for (ValidationResult c : ValidationResult.values()) System.out.println(c);
public static ValidationResult 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 © 2009–2025 OrientDB. All rights reserved.