public enum WlShellSurfaceTransient extends Enum<WlShellSurfaceTransient>
These flags specify details of the expected behaviour of transient surfaces. Used in the set_transient request.
| Enum Constant and Description |
|---|
INACTIVE
do not set keyboard focus
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static WlShellSurfaceTransient |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WlShellSurfaceTransient[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WlShellSurfaceTransient INACTIVE
public static WlShellSurfaceTransient[] values()
for (WlShellSurfaceTransient c : WlShellSurfaceTransient.values()) System.out.println(c);
public static WlShellSurfaceTransient valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.