Enum Class GraphData.Layout

java.lang.Object
java.lang.Enum<GraphData.Layout>
com.storedobject.chart.GraphData.Layout
All Implemented Interfaces:
Serializable, Comparable<GraphData.Layout>, Constable
Enclosing class:
GraphData<N extends GraphData.Node>

public static enum GraphData.Layout extends Enum<GraphData.Layout>
The Layout enum defines various layout options that can be used for organizational or structural representation. Each layout type specifies a different arrangement model. Enum Constants: - FORCE: Represents a force-directed layout, commonly used for graphs or networks. - CIRCULAR: Represents a circular layout where elements are arranged in a circular fashion. - NONE: Represents the absence of any specific layout. The `toString` method is overridden to provide a string representation of the layout type in the lowercase and enclosed in quotation marks.
Author:
Syam