public static enum Inlay.Placement extends java.lang.Enum<Inlay.Placement>
Inlay.getPlacement()
Enum Constant and Description |
---|
ABOVE_LINE |
AFTER_LINE_END |
BELOW_LINE |
INLINE |
Modifier and Type | Method and Description |
---|---|
static Inlay.Placement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Inlay.Placement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Inlay.Placement INLINE
public static final Inlay.Placement ABOVE_LINE
public static final Inlay.Placement BELOW_LINE
public static final Inlay.Placement AFTER_LINE_END
public static Inlay.Placement[] values()
for (Inlay.Placement c : Inlay.Placement.values()) System.out.println(c);
public static Inlay.Placement 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 null