枚举常量和说明 |
---|
Default
默认风格
|
Floating
浮动
|
FloatingAutoHide
点击外部区域自动隐藏的浮动窗口
|
IFrame
显示单据在独立的浏览器窗口中
|
InContainer
包含
|
InCurrentForm
当前页面重新载入元数据重新刷新
|
MainNewTabPage
主界面新页签
|
Modal
模态显示
|
NewTabPage
新页签
|
NewWindow
显示单据在独立的浏览器窗口中
|
NonModal
非模态
|
ReplaceHomePage
替换首页
|
RobotAutoFloat
机器人自动浮动窗体
|
ToolTips
Tips方式显示
|
限定符和类型 | 方法和说明 |
---|---|
static ShowType |
forValue(int value) |
int |
getValue() |
static ShowType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static ShowType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ShowType Default
public static final ShowType NewTabPage
public static final ShowType InContainer
public static final ShowType Floating
public static final ShowType NonModal
public static final ShowType Modal
public static final ShowType MainNewTabPage
public static final ShowType InCurrentForm
public static final ShowType FloatingAutoHide
public static final ShowType NewWindow
public static final ShowType IFrame
public static final ShowType RobotAutoFloat
public static final ShowType ToolTips
public static final ShowType ReplaceHomePage
public static ShowType[] values()
for (ShowType c : ShowType.values()) System.out.println(c);
public static ShowType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public int getValue()
public static ShowType forValue(int value)