Package ghidra.graph.viewer
Enum Class PathHighlightMode
- All Implemented Interfaces:
Serializable
,Comparable<PathHighlightMode>
,Constable
An enum that lists possible states for highlighting paths between vertices in a graph.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionShows all cycles in the graphShows all cycles for a given vertexShows all paths that can reach the given vertexShows all paths coming into and out of a vertexShows no pathsShows all paths reachable from the current vertexShows all paths between two verticesShows all paths that must have been traveled to reach the current vertexShows all paths that will be traveled after leaving the current vertex -
Method Summary
Modifier and TypeMethodDescriptionstatic PathHighlightMode
Returns the enum constant of this class with the specified name.static PathHighlightMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALLCYCLE
Shows all cycles in the graph -
CYCLE
Shows all cycles for a given vertex -
IN
Shows all paths that can reach the given vertex -
INOUT
Shows all paths coming into and out of a vertex -
OFF
Shows no paths -
OUT
Shows all paths reachable from the current vertex -
PATH
Shows all paths between two vertices -
SCOPED_FORWARD
Shows all paths that must have been traveled to reach the current vertex -
SCOPED_REVERSE
Shows all paths that will be traveled after leaving the current vertex
-
-
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
-