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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum 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 SummaryModifier and TypeMethodDescriptionstatic PathHighlightModeReturns 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- 
ALLCYCLEShows all cycles in the graph
- 
CYCLEShows all cycles for a given vertex
- 
INShows all paths that can reach the given vertex
- 
INOUTShows all paths coming into and out of a vertex
- 
OFFShows no paths
- 
OUTShows all paths reachable from the current vertex
- 
PATHShows all paths between two vertices
- 
SCOPED_FORWARDShows all paths that must have been traveled to reach the current vertex
- 
SCOPED_REVERSEShows all paths that will be traveled after leaving the current vertex
 
- 
- 
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
 
 
-