public enum SearchResultKind extends java.lang.Enum<SearchResultKind>
| Enum Constant and Description |
|---|
DECLARATION |
INVOCATION |
READ |
READ_WRITE |
REFERENCE |
UNKNOWN |
WRITE |
| Modifier and Type | Method and Description |
|---|---|
static SearchResultKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchResultKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchResultKind DECLARATION
public static final SearchResultKind INVOCATION
public static final SearchResultKind READ
public static final SearchResultKind READ_WRITE
public static final SearchResultKind REFERENCE
public static final SearchResultKind UNKNOWN
public static final SearchResultKind WRITE
public static SearchResultKind[] values()
for (SearchResultKind c : SearchResultKind.values()) System.out.println(c);
public static SearchResultKind 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