public enum EndorsementStatus extends Enum<EndorsementStatus>
| Enum Constant and Description |
|---|
ENDORSED |
ON_HOLD |
REJECTED |
WAITING_FOR_ENDORSEMENT |
| Modifier and Type | Method and Description |
|---|---|
static EndorsementStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EndorsementStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EndorsementStatus ENDORSED
public static final EndorsementStatus REJECTED
public static final EndorsementStatus WAITING_FOR_ENDORSEMENT
public static final EndorsementStatus ON_HOLD
public static EndorsementStatus[] values()
for (EndorsementStatus c : EndorsementStatus.values()) System.out.println(c);
public static EndorsementStatus 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 © 2024 Global Biodiversity Information Facility (GBIF). All rights reserved.