public enum DependencyKind extends java.lang.Enum<DependencyKind> implements IDependencyKind
Enum Constant and Description |
---|
CALL |
EXTENDS |
IMPLEMENTS |
NEW |
READ |
USES |
WRITE |
Modifier and Type | Method and Description |
---|---|
static DependencyKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DependencyKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
name
public static final DependencyKind USES
public static final DependencyKind READ
public static final DependencyKind WRITE
public static final DependencyKind EXTENDS
public static final DependencyKind IMPLEMENTS
public static final DependencyKind CALL
public static final DependencyKind NEW
public static DependencyKind[] values()
for (DependencyKind c : DependencyKind.values()) System.out.println(c);
public static DependencyKind 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 null