public enum Stereotype extends java.lang.Enum<Stereotype>
| Enum Constant and Description |
|---|
ABSTRACT |
DEPRECATED |
FIELD_ACCESSOR |
FIELD_MUTATOR |
HAS_BODY |
TYPE_CONSTRUCTOR |
TYPE_MEMBER |
| Modifier and Type | Method and Description |
|---|---|
static Stereotype |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Stereotype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stereotype ABSTRACT
public static final Stereotype DEPRECATED
public static final Stereotype TYPE_MEMBER
public static final Stereotype TYPE_CONSTRUCTOR
public static final Stereotype HAS_BODY
public static final Stereotype FIELD_ACCESSOR
public static final Stereotype FIELD_MUTATOR
public static Stereotype[] values()
for (Stereotype c : Stereotype.values()) System.out.println(c);
public static Stereotype 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