public enum SupportStatus extends Enum<SupportStatus>
| Enum Constant and Description |
|---|
OPTIONAL
The project is optional to run under this.
|
REQUIRED
The project is required to run under this.
|
UNKNOWN
It is not known if the project supports this.
|
UNSUPPORTED
The project does not support this.
|
| Modifier and Type | Method and Description |
|---|---|
static SupportStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupportStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="required") public static final SupportStatus REQUIRED
@SerializedName(value="optional") public static final SupportStatus OPTIONAL
@SerializedName(value="unsupported") public static final SupportStatus UNSUPPORTED
@SerializedName(value="unknown") public static final SupportStatus UNKNOWN
public static SupportStatus[] values()
for (SupportStatus c : SupportStatus.values()) System.out.println(c);
public static SupportStatus 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.