public enum CSharpDependencyKind extends java.lang.Enum<CSharpDependencyKind> implements IDependencyKind
Modifier and Type | Method and Description |
---|---|
static CSharpDependencyKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CSharpDependencyKind[] |
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 CSharpDependencyKind FIELD_TYPE
public static final CSharpDependencyKind PARAMETER_TYPE
public static final CSharpDependencyKind LOCAL_VARIABLE_TYPE
public static final CSharpDependencyKind CATCH_TYPE
public static final CSharpDependencyKind GENERIC_PARAMETER_TYPE
public static final CSharpDependencyKind GENERIC_PARAMETER_CONSTRAINT
public static final CSharpDependencyKind RETURN_TYPE
public static final CSharpDependencyKind CAST
public static final CSharpDependencyKind EXTENDS
public static final CSharpDependencyKind IMPLEMENTS
public static final CSharpDependencyKind USES
public static final CSharpDependencyKind CALL
public static final CSharpDependencyKind VIRTUAL_CALL
public static final CSharpDependencyKind CONSTRUCTOR_CALL
public static final CSharpDependencyKind READ
public static final CSharpDependencyKind WRITE
public static final CSharpDependencyKind NEW
public static final CSharpDependencyKind TYPEOF
public static final CSharpDependencyKind HAS_ATTRIBUTE
public static final CSharpDependencyKind IMPLICIT_CONVERSION
public static final CSharpDependencyKind EXPLICIT_CONVERSION
public static final CSharpDependencyKind DELEGATE_INITIALIZATION
public static final CSharpDependencyKind OVERRIDE
public static CSharpDependencyKind[] values()
for (CSharpDependencyKind c : CSharpDependencyKind.values()) System.out.println(c);
public static CSharpDependencyKind 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