public static enum EntityEditor.LabelStyle extends Enum<EntityEditor.LabelStyle>
The style used for rendering field labels. Can be set on individual field nodes or on a parent node.
Enum Constant and Description |
---|
Default
Display the label.
|
None
Do not display label
|
Modifier and Type | Method and Description |
---|---|
static EntityEditor.LabelStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityEditor.LabelStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityEditor.LabelStyle None
Do not display label
public static final EntityEditor.LabelStyle Default
Display the label.
public static EntityEditor.LabelStyle[] values()
for (EntityEditor.LabelStyle c : EntityEditor.LabelStyle.values()) System.out.println(c);
public static EntityEditor.LabelStyle 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 nullCopyright © 2022. All Rights Reserved.