Enum CSharpDependencyKind
- java.lang.Object
-
- java.lang.Enum<CSharpDependencyKind>
-
- com.hello2morrow.sonargraph.api.csharp.CSharpDependencyKind
-
- All Implemented Interfaces:
IDependencyKind
,java.io.Serializable
,java.lang.Comparable<CSharpDependencyKind>
public enum CSharpDependencyKind extends java.lang.Enum<CSharpDependencyKind> implements IDependencyKind
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.-
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface com.hello2morrow.sonargraph.api.IDependencyKind
name
-
-
-
-
Enum Constant Detail
-
FIELD_TYPE
public static final CSharpDependencyKind FIELD_TYPE
-
PARAMETER_TYPE
public static final CSharpDependencyKind PARAMETER_TYPE
-
LOCAL_VARIABLE_TYPE
public static final CSharpDependencyKind LOCAL_VARIABLE_TYPE
-
CATCH_TYPE
public static final CSharpDependencyKind CATCH_TYPE
-
GENERIC_PARAMETER_TYPE
public static final CSharpDependencyKind GENERIC_PARAMETER_TYPE
-
GENERIC_PARAMETER_CONSTRAINT
public static final CSharpDependencyKind GENERIC_PARAMETER_CONSTRAINT
-
RETURN_TYPE
public static final CSharpDependencyKind RETURN_TYPE
-
CAST
public static final CSharpDependencyKind CAST
-
EXTENDS
public static final CSharpDependencyKind EXTENDS
-
IMPLEMENTS
public static final CSharpDependencyKind IMPLEMENTS
-
USES
public static final CSharpDependencyKind USES
-
CALL
public static final CSharpDependencyKind CALL
-
VIRTUAL_CALL
public static final CSharpDependencyKind VIRTUAL_CALL
-
CONSTRUCTOR_CALL
public static final CSharpDependencyKind CONSTRUCTOR_CALL
-
READ
public static final CSharpDependencyKind READ
-
WRITE
public static final CSharpDependencyKind WRITE
-
NEW
public static final CSharpDependencyKind NEW
-
TYPEOF
public static final CSharpDependencyKind TYPEOF
-
HAS_ATTRIBUTE
public static final CSharpDependencyKind HAS_ATTRIBUTE
-
IMPLICIT_CONVERSION
public static final CSharpDependencyKind IMPLICIT_CONVERSION
-
EXPLICIT_CONVERSION
public static final CSharpDependencyKind EXPLICIT_CONVERSION
-
DELEGATE_INITIALIZATION
public static final CSharpDependencyKind DELEGATE_INITIALIZATION
-
OVERRIDE
public static final CSharpDependencyKind OVERRIDE
-
-
Method Detail
-
values
public static CSharpDependencyKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CSharpDependencyKind c : CSharpDependencyKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CSharpDependencyKind valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-