public enum CSMethodModifier extends Enum<CSMethodModifier>
| Enum Constant and Description |
|---|
Abstract |
AbstractOverride |
None |
Override |
Sealed |
Static |
Virtual |
| Modifier and Type | Method and Description |
|---|---|
static CSMethodModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSMethodModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSMethodModifier Abstract
public static final CSMethodModifier AbstractOverride
public static final CSMethodModifier Sealed
public static final CSMethodModifier Override
public static final CSMethodModifier Virtual
public static final CSMethodModifier Static
public static final CSMethodModifier None
public static CSMethodModifier[] values()
for (CSMethodModifier c : CSMethodModifier.values()) System.out.println(c);
public static CSMethodModifier valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.