public static final enum

GraphDialogExtensions.LayoutMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pnfsoftware.jeb.client.api.GraphDialogExtensions.LayoutMode

Class Overview

Graph rendering mode.

Summary

Enum Values
GraphDialogExtensions.LayoutMode  FDC  Force-directed centrality. 
GraphDialogExtensions.LayoutMode  FDC_NO_WEIGHT  Similar to FDC, however after rendering, weights and scores of all vertices are reset to 0, making every node on the graph effectively equivalent, weight-wise, to any other. 
Public Methods
static GraphDialogExtensions.LayoutMode valueOf(String name)
final static LayoutMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final GraphDialogExtensions.LayoutMode FDC

Force-directed centrality. An internal layout is determined based on node centrality (derived from user-provided weight as well as edge-betweenness scores); that layout is modified by the repeated application of a force-directed algorithm until a relatively stable layout is obtained.

public static final GraphDialogExtensions.LayoutMode FDC_NO_WEIGHT

Similar to FDC, however after rendering, weights and scores of all vertices are reset to 0, making every node on the graph effectively equivalent, weight-wise, to any other. Practically, that means all vertices will have the same size or colors shades.

Public Methods

public static GraphDialogExtensions.LayoutMode valueOf (String name)

public static final LayoutMode[] values ()