public enum ProjectStatus extends Enum<ProjectStatus>
| Enum Constant and Description |
|---|
APPROVED
The project is approved and public.
|
ARCHIVED
The project is archived.
|
DRAFT
The project is a draft.
|
PRIVATE
The project is private
|
PROCESSING
The project is processing.
|
REJECTED
The project is rejected.
|
SCHEDULED
The project is scheduled
|
UNKNOWN
The project is unknown.
|
UNLISTED
The project is unlisted.
|
WITHHELD
The project is withheld
|
| Modifier and Type | Method and Description |
|---|---|
static ProjectStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="approved") public static final ProjectStatus APPROVED
@SerializedName(value="rejected") public static final ProjectStatus REJECTED
@SerializedName(value="draft") public static final ProjectStatus DRAFT
@SerializedName(value="unlisted") public static final ProjectStatus UNLISTED
@SerializedName(value="archived") public static final ProjectStatus ARCHIVED
@SerializedName(value="processing") public static final ProjectStatus PROCESSING
@SerializedName(value="withheld") public static final ProjectStatus WITHHELD
@SerializedName(value="scheduled") public static final ProjectStatus SCHEDULED
@SerializedName(value="private") public static final ProjectStatus PRIVATE
@SerializedName(value="unknown") public static final ProjectStatus UNKNOWN
public static ProjectStatus[] values()
for (ProjectStatus c : ProjectStatus.values()) System.out.println(c);
public static ProjectStatus 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 © 2026. All rights reserved.