public enum RelationType extends java.lang.Enum<RelationType>
| Enum Constant and Description |
|---|
EMBEDEDLIB |
INCOMPATIBLE |
OPTIONAL |
REQUIRED |
TOOL |
| Modifier and Type | Method and Description |
|---|---|
static RelationType |
fromValue(java.lang.String value) |
java.lang.String |
toString() |
java.lang.String |
value() |
static RelationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RelationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="embeddedLibrary") public static final RelationType EMBEDEDLIB
@SerializedName(value="optionalDependency") public static final RelationType OPTIONAL
@SerializedName(value="requiredDependency") public static final RelationType REQUIRED
@SerializedName(value="tool") public static final RelationType TOOL
@SerializedName(value="incompatible") public static final RelationType INCOMPATIBLE
public static RelationType[] values()
for (RelationType c : RelationType.values()) System.out.println(c);
public static RelationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<RelationType>public java.lang.String value()
public static RelationType fromValue(java.lang.String value)