public enum FlowchartDirectionType extends Enum<FlowchartDirectionType>
文件名:FlowchartDirectionType.java
用途: 流程图绘制方向枚举,用于标记流程图节点的排列方向
编码时间:2022年3月3日 上午8:57:37
修改时间:2022年3月3日 上午8:57:37
Enum Constant and Description |
---|
BT
从下到上
|
LR
从左到右
|
RL
从右到左
|
TB
从上到下
|
TD
从上到下
|
Modifier and Type | Method and Description |
---|---|
static FlowchartDirectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowchartDirectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowchartDirectionType TB
public static final FlowchartDirectionType TD
public static final FlowchartDirectionType BT
public static final FlowchartDirectionType RL
public static final FlowchartDirectionType LR
public static FlowchartDirectionType[] values()
for (FlowchartDirectionType c : FlowchartDirectionType.values()) System.out.println(c);
public static FlowchartDirectionType 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 © 2024. All rights reserved.