public static enum Window.Type extends Enum<Window.Type>
Frame
或Dialog
实例。
某些平台可能不完全支持某种窗口类型。 根据支持的级别,窗口类型的某些属性可能不服从。
Window.getType()
,
Window.setType(java.awt.Window.Type)
Enum Constant and Description |
---|
NORMAL
表示
正常窗口。
|
POPUP
表示一个
弹出窗口。
|
UTILITY
表示
实用程序窗口。
|
Modifier and Type | Method and Description |
---|---|
static Window.Type |
valueOf(String name)
以指定的名称返回此类型的枚举常量。
|
static Window.Type[] |
values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。
|
public static final Window.Type NORMAL
Window
类或其后代的对象的默认类型。
对于常规的顶级窗口使用此类型。
public static final Window.Type UTILITY
Frame
或Dialog
对象,并且启用了其装饰,则本机系统可能会使窗口具有较小的标题栏。
public static final Window.Type POPUP
Frame
或Dialog
类的实例,也可能会强制使该类型的窗口Frame
Dialog
,并启用装饰。
public static Window.Type[] values()
for (Window.Type c : Window.Type.values())
System.out.println(c);
public static Window.Type valueOf(String name)
name
- 要返回的枚举常数的名称。
IllegalArgumentException
- 如果此枚举类型没有指定名称的常量
NullPointerException
- 如果参数为null
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.