Serializable, Comparable<Check.Type>public static enum Check.Type extends Enum<Check.Type>
| Enum Constant | Description |
|---|---|
ANNOTATION |
|
CLASS |
|
FIELD |
|
METHOD |
|
METHOD_PARAMETER |
| Modifier and Type | Method | Description |
|---|---|---|
static Check.Type |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Check.Type[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Check.Type CLASS
public static final Check.Type METHOD
public static final Check.Type METHOD_PARAMETER
public static final Check.Type FIELD
public static final Check.Type ANNOTATION
public static Check.Type[] values()
for (Check.Type c : Check.Type.values()) System.out.println(c);
public static Check.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 © 2017 Lukas Krejci. All Rights Reserved.