public static enum Dependency.DependencyType extends java.lang.Enum<Dependency.DependencyType>
Enum Constant and Description |
---|
E_ATTRIBUTE |
E_GENERIC_TYPE |
E_OPERATION_PARAMETER |
E_OPERATION_RETURN_TYPE |
E_REFERENCE |
E_SUPER_TYPE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Dependency.DependencyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dependency.DependencyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dependency.DependencyType E_SUPER_TYPE
public static final Dependency.DependencyType E_REFERENCE
public static final Dependency.DependencyType E_ATTRIBUTE
public static final Dependency.DependencyType E_OPERATION_RETURN_TYPE
public static final Dependency.DependencyType E_OPERATION_PARAMETER
public static final Dependency.DependencyType E_GENERIC_TYPE
public static Dependency.DependencyType[] values()
for (Dependency.DependencyType c : Dependency.DependencyType.values()) System.out.println(c);
public static Dependency.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 java.lang.String toString()
toString
in class java.lang.Enum<Dependency.DependencyType>