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