public static enum StoryboardExtension.AppendTo extends java.lang.Enum<StoryboardExtension.AppendTo>
Enum Constant and Description |
---|
EXAMPLE
Cards and Containers are added to the Example if using the Example Command, otherwise added to the Storyboard (default behaviour)
|
NEW_STORYBOARD_SECTION_PER_EXAMPLE
If using the Example Command then any cards added during exection of the example will be added to a new Section Container on the Storyboard,
otherwise cards and containers are added to the Storyboard
|
STORYBOARD
Cards and Containers are added to the Storyboard (original behaviour)
|
Modifier and Type | Method and Description |
---|---|
static StoryboardExtension.AppendTo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StoryboardExtension.AppendTo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoryboardExtension.AppendTo STORYBOARD
public static final StoryboardExtension.AppendTo EXAMPLE
public static final StoryboardExtension.AppendTo NEW_STORYBOARD_SECTION_PER_EXAMPLE
public static StoryboardExtension.AppendTo[] values()
for (StoryboardExtension.AppendTo c : StoryboardExtension.AppendTo.values()) System.out.println(c);
public static StoryboardExtension.AppendTo 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