public enum RenderMode extends Enum<RenderMode>
| 枚举常量和说明 |
|---|
DESCRIPTION
The rendering mode is just the description.
|
GRAPHIC
The rendering mode is just an image.
|
GRAPHIC_AND_DESCRIPTION
The rendering mode is an image and the description.
|
NAME_AND_DESCRIPTION
The rendering mode is the name of the signer and the description.
|
public static final RenderMode DESCRIPTION
public static final RenderMode NAME_AND_DESCRIPTION
public static final RenderMode GRAPHIC_AND_DESCRIPTION
public static final RenderMode GRAPHIC
public static RenderMode[] values()
for (RenderMode c : RenderMode.values()) System.out.println(c);
public static RenderMode valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.