public enum CSClassModifier extends Enum<CSClassModifier>
| Modifier and Type | Method and Description |
|---|---|
static CSClassModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSClassModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSClassModifier Abstract
public static final CSClassModifier Sealed
public static final CSClassModifier Static
public static final CSClassModifier None
public static CSClassModifier[] values()
for (CSClassModifier c : CSClassModifier.values()) System.out.println(c);
public static CSClassModifier 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.