public enum ProjectMonetizationStatus extends Enum<ProjectMonetizationStatus>
| Enum Constant and Description |
|---|
DEMONETIZED |
FORCE_DEMONETIZED |
MONETIZED |
| Modifier and Type | Method and Description |
|---|---|
static ProjectMonetizationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectMonetizationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="monetized") public static final ProjectMonetizationStatus MONETIZED
@SerializedName(value="demonetized") public static final ProjectMonetizationStatus DEMONETIZED
@SerializedName(value="force-demonetized") public static final ProjectMonetizationStatus FORCE_DEMONETIZED
public static ProjectMonetizationStatus[] values()
for (ProjectMonetizationStatus c : ProjectMonetizationStatus.values()) System.out.println(c);
public static ProjectMonetizationStatus 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.