@JsType(namespace="xgl.dom.enums") public enum CaptureType extends Enum<CaptureType>
Enum Constant and Description |
---|
HARD_CAPTURE
Prevent other elements receiving mouse event for css styling (:hover).
|
SOFT_CAPTURE
Do not prevent other elements receiving mouse event for css styling
(:hover).
|
Modifier and Type | Method and Description |
---|---|
static CaptureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaptureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaptureType HARD_CAPTURE
public static final CaptureType SOFT_CAPTURE
public static CaptureType[] values()
for (CaptureType c : CaptureType.values()) System.out.println(c);
public static CaptureType 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 © 2018 Xalys. All rights reserved.