public enum DOMBreakpointType extends Enum<DOMBreakpointType>
| Enum Constant and Description |
|---|
ATTRIBUTE_MODIFIED |
NODE_REMOVED |
SUBTREE_MODIFIED |
| Modifier and Type | Method and Description |
|---|---|
static DOMBreakpointType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DOMBreakpointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DOMBreakpointType SUBTREE_MODIFIED
public static final DOMBreakpointType ATTRIBUTE_MODIFIED
public static final DOMBreakpointType NODE_REMOVED
public static DOMBreakpointType[] values()
for (DOMBreakpointType c : DOMBreakpointType.values()) System.out.println(c);
public static DOMBreakpointType 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 © 2020. All rights reserved.