Package sc.fiji.snt.tracing.auto
Enum Class AutoTracer.SeedRole
- All Implemented Interfaces:
Serializable,Comparable<AutoTracer.SeedRole>,java.lang.constant.Constable
- Enclosing interface:
AutoTracer
Role a
SeedPoint plays in a tracing run. Tracers honor the
subset they implement (see AutoTracer.honoredSeedRoles()) and silently
ignore the rest. The role list is intentionally small; new roles can
be added without breaking existing implementors because each role
maps to its own default-method setter.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic AutoTracer.SeedRoleReturns the enum constant of this class with the specified name.static AutoTracer.SeedRole[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ROOT
Starting point: tree grows outward from here. -
TIP
Target / endpoint: trace toward this point. -
WAYPOINT
Intermediate constraint: path should pass through / near this.
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException- if the argument is null
-