public enum LineEndingStyle extends Enum<LineEndingStyle>
Copyright (c) 2020 xsx All Rights Reserved. x-easypdf-pdfbox is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details.
| 枚举常量和说明 |
|---|
Butt
短线
|
Circle
圆形
|
ClosedArrow
闭箭头
|
Diamond
菱形
|
None
无
|
OpenArrow
开箭头
|
RClosedArrow
反向闭箭头
|
ROpenArrow
反向开箭头
|
Slash
斜短线
|
Square
正方形
|
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getRemark()
备注
|
static LineEndingStyle |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static LineEndingStyle[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final LineEndingStyle None
public static final LineEndingStyle Square
public static final LineEndingStyle Circle
public static final LineEndingStyle Diamond
public static final LineEndingStyle OpenArrow
public static final LineEndingStyle ClosedArrow
public static final LineEndingStyle Butt
public static final LineEndingStyle ROpenArrow
public static final LineEndingStyle RClosedArrow
public static final LineEndingStyle Slash
public static LineEndingStyle[] values()
for (LineEndingStyle c : LineEndingStyle.values()) System.out.println(c);
public static LineEndingStyle valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getRemark()
Copyright © 2025. All rights reserved.