public static enum ComponentChangeEvent.Code extends java.lang.Enum<ComponentChangeEvent.Code>
| Enum Constant and Description | 
|---|
| DYNAMIC_ACTIVITY_CHANGEDDynamic actvity has changed in one or more components. | 
| GEOMETRY_CHANGEDGeometry has changed in one or more components. | 
| NAME_CHANGEDA Component's name has changed | 
| PROPERTY_CHANGEDProperties have been changed in one or more components. | 
| STRUCTURE_CHANGEDComponents have been added or deleted. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ComponentChangeEvent.Code | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ComponentChangeEvent.Code[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ComponentChangeEvent.Code STRUCTURE_CHANGED
public static final ComponentChangeEvent.Code GEOMETRY_CHANGED
public static final ComponentChangeEvent.Code PROPERTY_CHANGED
public static final ComponentChangeEvent.Code DYNAMIC_ACTIVITY_CHANGED
public static final ComponentChangeEvent.Code NAME_CHANGED
public static ComponentChangeEvent.Code[] values()
for (ComponentChangeEvent.Code c : ComponentChangeEvent.Code.values()) System.out.println(c);
public static ComponentChangeEvent.Code 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 null