public enum CppMethodKind extends java.lang.Enum<CppMethodKind>
| Enum Constant and Description |
|---|
CONSTRUCTOR |
DESTRUCTOR |
MEMBER_FUNCTION |
SPECIAL_MEMBER_FUNCTION |
STATIC_CONSTRUCTOR |
STATIC_MEMBER_FUNCTION |
| Modifier and Type | Method and Description |
|---|---|
static CppMethodKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CppMethodKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CppMethodKind CONSTRUCTOR
public static final CppMethodKind STATIC_CONSTRUCTOR
public static final CppMethodKind DESTRUCTOR
public static final CppMethodKind MEMBER_FUNCTION
public static final CppMethodKind STATIC_MEMBER_FUNCTION
public static final CppMethodKind SPECIAL_MEMBER_FUNCTION
public static CppMethodKind[] values()
for (CppMethodKind c : CppMethodKind.values()) System.out.println(c);
public static CppMethodKind 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