public static enum HtmlShadowElement.Direction extends java.lang.Enum<HtmlShadowElement.Direction>
Enum Constant and Description |
---|
AFTER_NEXT
It indicates the direction of the target is inserted after the next insertion
|
BEFORE_PREVIOUS
It indicates the direction of the target is inserted before the previous insertion
|
FIRST
It indicates the direction of the target is the same as the first insertion
|
IN_RANGE
It indicates the direction of the target is inserted in its descendant insertion range
|
LAST
It indicates the direction of the target is the same as the last insertion
|
NEXT
It indicates the direction of the target is the same as the next insertion
|
PREVIOUS
It indicates the direction of the target is the same as the previous insertion
|
UNKNOWN
It cannot indicate the direction of the target where it should be inserted.
|
Modifier and Type | Method and Description |
---|---|
static HtmlShadowElement.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HtmlShadowElement.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlShadowElement.Direction BEFORE_PREVIOUS
public static final HtmlShadowElement.Direction PREVIOUS
public static final HtmlShadowElement.Direction FIRST
public static final HtmlShadowElement.Direction IN_RANGE
public static final HtmlShadowElement.Direction LAST
public static final HtmlShadowElement.Direction NEXT
public static final HtmlShadowElement.Direction AFTER_NEXT
public static final HtmlShadowElement.Direction UNKNOWN
public static HtmlShadowElement.Direction[] values()
for (HtmlShadowElement.Direction c : HtmlShadowElement.Direction.values()) System.out.println(c);
public static HtmlShadowElement.Direction 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 © 2005-2023 Potix Corporation. All Rights Reserved.