public enum CanvasBehaviour extends java.lang.Enum<CanvasBehaviour>
StudioComponent
Enum Constant and Description |
---|
COMPONENT
Component is shown on canvas as a simple box with icon.
|
CONTAINER
Component is shown on canvas as a component container.
|
INPUT_FIELD
Component is shown on canvas as an input field.
|
Modifier and Type | Method and Description |
---|---|
static CanvasBehaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CanvasBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CanvasBehaviour COMPONENT
public static final CanvasBehaviour INPUT_FIELD
public static final CanvasBehaviour CONTAINER
public static CanvasBehaviour[] values()
for (CanvasBehaviour c : CanvasBehaviour.values()) System.out.println(c);
public static CanvasBehaviour 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