Package net.sourceforge.plantuml
Enum CornerParam
- java.lang.Object
-
- java.lang.Enum<CornerParam>
-
- net.sourceforge.plantuml.CornerParam
-
- All Implemented Interfaces:
Serializable
,Comparable<CornerParam>
public enum CornerParam extends Enum<CornerParam>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description agent
archimate
card
component
DEFAULT
diagramBorder
hexagon
person
rectangle
titleBorder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDiagonalKey()
String
getRoundKey()
static CornerParam
valueOf(String name)
Returns the enum constant of this type with the specified name.static CornerParam[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final CornerParam DEFAULT
-
diagramBorder
public static final CornerParam diagramBorder
-
titleBorder
public static final CornerParam titleBorder
-
rectangle
public static final CornerParam rectangle
-
person
public static final CornerParam person
-
hexagon
public static final CornerParam hexagon
-
archimate
public static final CornerParam archimate
-
component
public static final CornerParam component
-
card
public static final CornerParam card
-
agent
public static final CornerParam agent
-
-
Method Detail
-
values
public static CornerParam[] 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 (CornerParam c : CornerParam.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CornerParam 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
-
getRoundKey
public String getRoundKey()
-
getDiagonalKey
public String getDiagonalKey()
-
-