Enum Class PathObjectHierarchyEvent.HierarchyEventType
java.lang.Object
java.lang.Enum<PathObjectHierarchyEvent.HierarchyEventType>
qupath.lib.objects.hierarchy.events.PathObjectHierarchyEvent.HierarchyEventType
- All Implemented Interfaces:
- Serializable,- Comparable<PathObjectHierarchyEvent.HierarchyEventType>,- Constable
- Enclosing class:
- PathObjectHierarchyEvent
public static enum PathObjectHierarchyEvent.HierarchyEventType
extends Enum<PathObjectHierarchyEvent.HierarchyEventType>
Enum representing different ways in which the hierarchy may have been updated.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionAn object has been addedA change was made to one or more object classificationsA change was made to one or more object measurementsA change was made to one or more objects that is more complex than the other changes allow forA more complex structural change was made than simply either adding or removing objectsAn object has been removed
- 
Method SummaryModifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
ADDEDAn object has been added
- 
REMOVEDAn object has been removed
- 
OTHER_STRUCTURE_CHANGEA more complex structural change was made than simply either adding or removing objects
- 
CHANGE_CLASSIFICATIONA change was made to one or more object classifications
- 
CHANGE_MEASUREMENTSA change was made to one or more object measurements
- 
CHANGE_OTHERA change was made to one or more objects that is more complex than the other changes allow for
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-