public static enum Usage.Kind extends Enum<Usage.Kind>
| Enum Constant and Description |
|---|
DECLARATION |
DECLARATION_WRITE |
LEXICAL_DECLARATION |
READ |
READ_WRITE |
WRITE |
| Modifier and Type | Method and Description |
|---|---|
static Usage.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Usage.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Usage.Kind DECLARATION
public static final Usage.Kind DECLARATION_WRITE
public static final Usage.Kind LEXICAL_DECLARATION
public static final Usage.Kind WRITE
public static final Usage.Kind READ
public static final Usage.Kind READ_WRITE
public static Usage.Kind[] values()
for (Usage.Kind c : Usage.Kind.values()) System.out.println(c);
public static Usage.Kind 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 © 2011–2016 SonarSource and Eriks Nukis. All rights reserved.