Enum BoxStyle
- java.lang.Object
-
- java.lang.Enum<BoxStyle>
-
- net.sourceforge.plantuml.activitydiagram3.ftile.BoxStyle
-
- All Implemented Interfaces:
Serializable
,Comparable<BoxStyle>
public enum BoxStyle extends Enum<BoxStyle>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PLAIN
SDL_ANTISAVE
SDL_CONTINUOUS
SDL_INPUT
SDL_OUTPUT
SDL_PROCEDURE
SDL_SAVE
SDL_TASK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
drawInternal(UGraphic ug, double width, double height, double shadowing, double roundCorner)
static BoxStyle
fromChar(char style)
protected Shadowable
getShape(double width, double height, double roundCorner)
double
getShield()
UDrawable
getUDrawable(double width, double height, double shadowing, double roundCorner)
static BoxStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static BoxStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLAIN
public static final BoxStyle PLAIN
-
SDL_INPUT
public static final BoxStyle SDL_INPUT
-
SDL_OUTPUT
public static final BoxStyle SDL_OUTPUT
-
SDL_PROCEDURE
public static final BoxStyle SDL_PROCEDURE
-
SDL_SAVE
public static final BoxStyle SDL_SAVE
-
SDL_ANTISAVE
public static final BoxStyle SDL_ANTISAVE
-
SDL_CONTINUOUS
public static final BoxStyle SDL_CONTINUOUS
-
SDL_TASK
public static final BoxStyle SDL_TASK
-
-
Method Detail
-
values
public static BoxStyle[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BoxStyle c : BoxStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BoxStyle valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromChar
public static BoxStyle fromChar(char style)
-
getUDrawable
public final UDrawable getUDrawable(double width, double height, double shadowing, double roundCorner)
-
getShape
protected Shadowable getShape(double width, double height, double roundCorner)
-
drawInternal
protected void drawInternal(UGraphic ug, double width, double height, double shadowing, double roundCorner)
-
getShield
public final double getShield()
-
-