public enum SignatureHelpTriggerKind extends java.lang.Enum<SignatureHelpTriggerKind>
Since 3.15.0
Enum Constant and Description |
---|
ContentChange
Signature help was triggered by the cursor moving or by the document content changing.
|
Invoked
Signature help was invoked manually by the user or by a command.
|
TriggerCharacter
Signature help was triggered by a trigger character.
|
Modifier and Type | Method and Description |
---|---|
static SignatureHelpTriggerKind |
forValue(int value) |
int |
getValue() |
static SignatureHelpTriggerKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SignatureHelpTriggerKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignatureHelpTriggerKind Invoked
public static final SignatureHelpTriggerKind TriggerCharacter
public static final SignatureHelpTriggerKind ContentChange
public static SignatureHelpTriggerKind[] values()
for (SignatureHelpTriggerKind c : SignatureHelpTriggerKind.values()) System.out.println(c);
public static SignatureHelpTriggerKind 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 nullpublic int getValue()
public static SignatureHelpTriggerKind forValue(int value)