public enum DepType extends Enum<DepType>
| Enum Constant and Description |
|---|
ANNOTATED |
ANNOTATION_VALUE |
CALLS |
CASTS_TO |
CATCHES |
CREATES |
CREATES_ARRAY |
EXTENDS |
HAS_PARAM |
IMPLEMENTS |
IS_OF_TYPE |
READS_WRITES |
REFERENCES |
RETURNS |
THROWS |
TYPE_PARAM |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DepType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DepType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DepType REFERENCES
public static final DepType EXTENDS
public static final DepType IMPLEMENTS
public static final DepType IS_OF_TYPE
public static final DepType HAS_PARAM
public static final DepType RETURNS
public static final DepType CALLS
public static final DepType READS_WRITES
public static final DepType CREATES
public static final DepType CREATES_ARRAY
public static final DepType CASTS_TO
public static final DepType THROWS
public static final DepType CATCHES
public static final DepType TYPE_PARAM
public static final DepType ANNOTATED
public static final DepType ANNOTATION_VALUE
public static DepType[] values()
for (DepType c : DepType.values()) System.out.println(c);
public static DepType 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 © 2019. All rights reserved.