public enum StructureChangeType extends Enum<StructureChangeType>
| Enum Constant and Description |
|---|
StructureChangeType_ChildAdded
The value of this constant is 0
|
StructureChangeType_ChildRemoved
The value of this constant is 1
|
StructureChangeType_ChildrenBulkAdded
The value of this constant is 3
|
StructureChangeType_ChildrenBulkRemoved
The value of this constant is 4
|
StructureChangeType_ChildrenInvalidated
The value of this constant is 2
|
StructureChangeType_ChildrenReordered
The value of this constant is 5
|
| Modifier and Type | Method and Description |
|---|---|
static StructureChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructureChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureChangeType StructureChangeType_ChildAdded
The value of this constant is 0
public static final StructureChangeType StructureChangeType_ChildRemoved
The value of this constant is 1
public static final StructureChangeType StructureChangeType_ChildrenInvalidated
The value of this constant is 2
public static final StructureChangeType StructureChangeType_ChildrenBulkAdded
The value of this constant is 3
public static final StructureChangeType StructureChangeType_ChildrenBulkRemoved
The value of this constant is 4
public static final StructureChangeType StructureChangeType_ChildrenReordered
The value of this constant is 5
public static StructureChangeType[] values()
for (StructureChangeType c : StructureChangeType.values()) System.out.println(c);
public static StructureChangeType 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.