Enum Class CompletionTriggerKind
- All Implemented Interfaces:
Serializable,Comparable<CompletionTriggerKind>,Constable
How a completion was triggered.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCompletion was triggered by typing an identifier (24x7 code complete), manual invocation (e.g Ctrl+Space) or via API.Completion was triggered by a trigger character specified by the `triggerCharacters` properties of the `CompletionRegistrationOptions`.Completion was re-triggered as current completion list is incomplete. -
Method Summary
Modifier and TypeMethodDescriptionstatic CompletionTriggerKindintstatic CompletionTriggerKindReturns the enum constant of this class with the specified name.static CompletionTriggerKind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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 specified by the `triggerCharacters` properties of the `CompletionRegistrationOptions`. -
TriggerForIncompleteCompletions
Completion was re-triggered as current completion list is incomplete.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getIntValue
public int getIntValue() -
get
-