public static enum Completion.TriggerKind extends Enum<Completion.TriggerKind>
Enum.EnumDesc<E extends Enum<E>>
Enum Constant and Description |
---|
Invoked
Completion was triggered by typing an identifier (24x7 code
complete), manual invocation (e.g Ctrl+Space) or via API.
|
TriggerCharacter
Completion was triggered by a trigger character.
|
TriggerForIncompleteCompletions
Completion was re-triggered as the current completion list is incomplete.
|
Modifier and Type | Method and Description |
---|---|
static Completion.TriggerKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Completion.TriggerKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Completion.TriggerKind Invoked
public static final Completion.TriggerKind TriggerCharacter
public static final Completion.TriggerKind TriggerForIncompleteCompletions
public static Completion.TriggerKind[] values()
public static Completion.TriggerKind 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 null