Enum CppDependencyKind
- java.lang.Object
-
- java.lang.Enum<CppDependencyKind>
-
- com.hello2morrow.sonargraph.api.cplusplus.CppDependencyKind
-
- All Implemented Interfaces:
IDependencyKind
,java.io.Serializable
,java.lang.Comparable<CppDependencyKind>
public enum CppDependencyKind extends java.lang.Enum<CppDependencyKind> implements IDependencyKind
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CppDependencyKind
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CppDependencyKind[]
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 CppDependencyKind FIELD_TYPE
-
VARIABLE_TYPE
public static final CppDependencyKind VARIABLE_TYPE
-
PARAMETER_TYPE
public static final CppDependencyKind PARAMETER_TYPE
-
LOCAL_VARIABLE_TYPE
public static final CppDependencyKind LOCAL_VARIABLE_TYPE
-
TEMPLATE_PARAMETER_TYPE
public static final CppDependencyKind TEMPLATE_PARAMETER_TYPE
-
THROW_TYPE
public static final CppDependencyKind THROW_TYPE
-
RETURN_TYPE
public static final CppDependencyKind RETURN_TYPE
-
TYPEDEF_TYPE
public static final CppDependencyKind TYPEDEF_TYPE
-
SIZEOF
public static final CppDependencyKind SIZEOF
-
DYNAMIC_CAST
public static final CppDependencyKind DYNAMIC_CAST
-
CAST
public static final CppDependencyKind CAST
-
POINTER_TO_MEMBER_OF
public static final CppDependencyKind POINTER_TO_MEMBER_OF
-
INHERITS_FROM
public static final CppDependencyKind INHERITS_FROM
-
VIRTUALLY_INHERITS_FROM
public static final CppDependencyKind VIRTUALLY_INHERITS_FROM
-
USES
public static final CppDependencyKind USES
-
CALL
public static final CppDependencyKind CALL
-
VIRTUAL_CALL
public static final CppDependencyKind VIRTUAL_CALL
-
READ
public static final CppDependencyKind READ
-
WRITE
public static final CppDependencyKind WRITE
-
NEW
public static final CppDependencyKind NEW
-
DELETE
public static final CppDependencyKind DELETE
-
MACRO_INVOCATION
public static final CppDependencyKind MACRO_INVOCATION
-
ADDRESS_TAKEN
public static final CppDependencyKind ADDRESS_TAKEN
-
INITIALIZE
public static final CppDependencyKind INITIALIZE
-
DECLARES
public static final CppDependencyKind DECLARES
-
BY_NAME
public static final CppDependencyKind BY_NAME
-
INCLUDES
public static final CppDependencyKind INCLUDES
-
TYPEDEF
public static final CppDependencyKind TYPEDEF
-
-
Method Detail
-
values
public static CppDependencyKind[] 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 (CppDependencyKind c : CppDependencyKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CppDependencyKind 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
-
-