public enum DependencyType extends java.lang.Enum<DependencyType>
| Modifier and Type | Method and Description |
|---|---|
static DependencyType |
fromString(java.lang.String key) |
java.lang.String |
getKey() |
static DependencyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DependencyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependencyType DATABASE
public static final DependencyType REST
public static final DependencyType INCLUDES
public static final DependencyType USES
public static DependencyType[] values()
for (DependencyType c : DependencyType.values()) System.out.println(c);
public static DependencyType 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 static DependencyType fromString(java.lang.String key)
public java.lang.String getKey()