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