public enum BookmarkType extends Enum<BookmarkType>
| Enum Constant and Description |
|---|
CALL |
EXTEND |
FIELD_ACCESS |
GENERAL |
IMPLEMENT |
IMPORT |
INSTANTIATE |
RETURN_TYPE |
TYPE |
TYPE_OF_VAR |
TYPE_PARAM |
VAR_REF |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
String |
getText() |
static BookmarkType |
getType(String name) |
static BookmarkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BookmarkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BookmarkType CALL
public static final BookmarkType TYPE_OF_VAR
public static final BookmarkType TYPE
public static final BookmarkType GENERAL
public static final BookmarkType TYPE_PARAM
public static final BookmarkType FIELD_ACCESS
public static final BookmarkType VAR_REF
public static final BookmarkType RETURN_TYPE
public static final BookmarkType EXTEND
public static final BookmarkType IMPLEMENT
public static final BookmarkType INSTANTIATE
public static final BookmarkType IMPORT
public static BookmarkType[] values()
for (BookmarkType c : BookmarkType.values()) System.out.println(c);
public static BookmarkType 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 nullpublic String getName()
public String getText()
@NotNull public static BookmarkType getType(String name)
Copyright © 2018. All rights reserved.