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