Spec-Zone .ru
спецификации, руководства, описания, API
|
public enum StageStyle extends java.lang.Enum<StageStyle>
Stage
.Enum Constant and Description |
---|
DECORATED
Defines a normal
Stage style with a solid white background and platform decorations. |
TRANSPARENT
Defines a
Stage style with a transparent background and no decorations. |
UNDECORATED
Defines a
Stage style with a solid white background and no decorations. |
UTILITY
Defines a
Stage style with a solid white background and minimal
platform decorations used for a utility window. |
Modifier and Type | Method and Description |
---|---|
static StageStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StageStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StageStyle DECORATED
Stage
style with a solid white background and platform decorations.public static final StageStyle UNDECORATED
Stage
style with a solid white background and no decorations.public static final StageStyle TRANSPARENT
Stage
style with a transparent background and no decorations.public static final StageStyle UTILITY
Stage
style with a solid white background and minimal
platform decorations used for a utility window.public static StageStyle[] values()
for (StageStyle c : StageStyle.values()) System.out.println(c);
public static StageStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to