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