public enum InlayHintKind extends java.lang.Enum<InlayHintKind>
Since 3.17.0
Enum Constant and Description |
---|
Parameter
An inlay hint that is for a parameter.
|
Type
An inlay hint that for a type annotation.
|
Modifier and Type | Method and Description |
---|---|
static InlayHintKind |
forValue(int value) |
int |
getValue() |
static InlayHintKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InlayHintKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InlayHintKind Type
public static final InlayHintKind Parameter
public static InlayHintKind[] values()
for (InlayHintKind c : InlayHintKind.values()) System.out.println(c);
public static InlayHintKind 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 InlayHintKind forValue(int value)