public static enum UseSite.Type extends Enum<UseSite.Type>
| Enum Constant and Description |
|---|
ANNOTATES |
HAS_TYPE |
IS_IMPLEMENTED |
IS_INHERITED |
IS_THROWN |
PARAMETER_TYPE |
RETURN_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static UseSite.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UseSite.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UseSite.Type ANNOTATES
public static final UseSite.Type IS_INHERITED
public static final UseSite.Type IS_IMPLEMENTED
public static final UseSite.Type HAS_TYPE
public static final UseSite.Type RETURN_TYPE
public static final UseSite.Type PARAMETER_TYPE
public static final UseSite.Type IS_THROWN
public static UseSite.Type[] values()
for (UseSite.Type c : UseSite.Type.values()) System.out.println(c);
public static UseSite.Type 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.