Package org.bidib.wizard.utils
Enum WindowUtils.WindowPosFlags
- java.lang.Object
-
- java.lang.Enum<WindowUtils.WindowPosFlags>
-
- org.bidib.wizard.utils.WindowUtils.WindowPosFlags
-
- All Implemented Interfaces:
Serializable,Comparable<WindowUtils.WindowPosFlags>
- Enclosing class:
- WindowUtils
public static enum WindowUtils.WindowPosFlags extends Enum<WindowUtils.WindowPosFlags>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASYNCWINDOWPOSDEFERERASEDRAWFRAMEFRAMECHANGEDHIDEWINDOWNOACTIVATENOCOPYBITSNOMOVENOOWNERZORDERNOREDRAWNOREPOSITIONNOSENDCHANGINGNOSIZENOZORDERSHOWWINDOW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intflag()static WindowUtils.WindowPosFlagsvalueOf(String name)Returns the enum constant of this type with the specified name.static WindowUtils.WindowPosFlags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASYNCWINDOWPOS
public static final WindowUtils.WindowPosFlags ASYNCWINDOWPOS
-
DEFERERASE
public static final WindowUtils.WindowPosFlags DEFERERASE
-
DRAWFRAME
public static final WindowUtils.WindowPosFlags DRAWFRAME
-
FRAMECHANGED
public static final WindowUtils.WindowPosFlags FRAMECHANGED
-
HIDEWINDOW
public static final WindowUtils.WindowPosFlags HIDEWINDOW
-
NOACTIVATE
public static final WindowUtils.WindowPosFlags NOACTIVATE
-
NOCOPYBITS
public static final WindowUtils.WindowPosFlags NOCOPYBITS
-
NOMOVE
public static final WindowUtils.WindowPosFlags NOMOVE
-
NOOWNERZORDER
public static final WindowUtils.WindowPosFlags NOOWNERZORDER
-
NOREDRAW
public static final WindowUtils.WindowPosFlags NOREDRAW
-
NOREPOSITION
public static final WindowUtils.WindowPosFlags NOREPOSITION
-
NOSENDCHANGING
public static final WindowUtils.WindowPosFlags NOSENDCHANGING
-
NOSIZE
public static final WindowUtils.WindowPosFlags NOSIZE
-
NOZORDER
public static final WindowUtils.WindowPosFlags NOZORDER
-
SHOWWINDOW
public static final WindowUtils.WindowPosFlags SHOWWINDOW
-
-
Method Detail
-
values
public static WindowUtils.WindowPosFlags[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WindowUtils.WindowPosFlags c : WindowUtils.WindowPosFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WindowUtils.WindowPosFlags valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
flag
public int flag()
-
-