public static enum ProjectVersion.ProjectDependencyType extends Enum<ProjectVersion.ProjectDependencyType>
| Enum Constant and Description |
|---|
EMBEDDED
If this dependency is embedded
|
INCOMPATIBLE
If this dependency is incompatible
|
OPTIONAL
If this dependency is optional
|
REQUIRED
If this dependency is required
|
| Modifier and Type | Method and Description |
|---|---|
static ProjectVersion.ProjectDependencyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectVersion.ProjectDependencyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="required") public static final ProjectVersion.ProjectDependencyType REQUIRED
@SerializedName(value="optional") public static final ProjectVersion.ProjectDependencyType OPTIONAL
@SerializedName(value="incompatible") public static final ProjectVersion.ProjectDependencyType INCOMPATIBLE
@SerializedName(value="embedded") public static final ProjectVersion.ProjectDependencyType EMBEDDED
public static ProjectVersion.ProjectDependencyType[] values()
for (ProjectVersion.ProjectDependencyType c : ProjectVersion.ProjectDependencyType.values()) System.out.println(c);
public static ProjectVersion.ProjectDependencyType 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.