public enum CppDependencyKind extends java.lang.Enum<CppDependencyKind> implements IDependencyKind
Modifier and Type | Method and 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.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
name
public static final CppDependencyKind FIELD_TYPE
public static final CppDependencyKind VARIABLE_TYPE
public static final CppDependencyKind PARAMETER_TYPE
public static final CppDependencyKind LOCAL_VARIABLE_TYPE
public static final CppDependencyKind TEMPLATE_PARAMETER_TYPE
public static final CppDependencyKind THROW_TYPE
public static final CppDependencyKind RETURN_TYPE
public static final CppDependencyKind TYPEDEF_TYPE
public static final CppDependencyKind SIZEOF
public static final CppDependencyKind DYNAMIC_CAST
public static final CppDependencyKind CAST
public static final CppDependencyKind POINTER_TO_MEMBER_OF
public static final CppDependencyKind INHERITS_FROM
public static final CppDependencyKind VIRTUALLY_INHERITS_FROM
public static final CppDependencyKind USES
public static final CppDependencyKind CALL
public static final CppDependencyKind VIRTUAL_CALL
public static final CppDependencyKind READ
public static final CppDependencyKind WRITE
public static final CppDependencyKind NEW
public static final CppDependencyKind DELETE
public static final CppDependencyKind MACRO_INVOCATION
public static final CppDependencyKind ADDRESS_TAKEN
public static final CppDependencyKind INITIALIZE
public static final CppDependencyKind DECLARES
public static final CppDependencyKind BY_NAME
public static CppDependencyKind[] values()
for (CppDependencyKind c : CppDependencyKind.values()) System.out.println(c);
public static CppDependencyKind 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