public enum ImageFieldLayout extends Enum<ImageFieldLayout>
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.
Enum Constant and Description |
---|
IMAGE_BEHIND
图像在标签后
|
IMAGE_DOWN
图像在标签下
|
IMAGE_LEFT
图像在标签左
|
IMAGE_NONE
无图像
|
IMAGE_ONLY
仅图像
|
IMAGE_RIGHT
图像在标签右
|
IMAGE_UP
图像在标签上
|
Modifier and Type | Method and Description |
---|---|
static ImageFieldLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageFieldLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageFieldLayout IMAGE_NONE
public static final ImageFieldLayout IMAGE_ONLY
public static final ImageFieldLayout IMAGE_UP
public static final ImageFieldLayout IMAGE_DOWN
public static final ImageFieldLayout IMAGE_LEFT
public static final ImageFieldLayout IMAGE_RIGHT
public static final ImageFieldLayout IMAGE_BEHIND
public static ImageFieldLayout[] values()
for (ImageFieldLayout c : ImageFieldLayout.values()) System.out.println(c);
public static ImageFieldLayout 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.