Uses of Interface
org.gephi.graph.api.Element
-
Packages that use Element Package Description org.gephi.appearance.api API for manipulating element appearance.org.gephi.appearance.spi Interfaces that define the different ways the appearance of elements can be transformed.org.gephi.datalab.api Data Laboratory API, all capabilites are exposed through various controllers.org.gephi.datalab.spi.rows.merge org.gephi.datalab.spi.values org.gephi.filters.spi Interfaces for creating new filter classes.org.gephi.graph.api Complete API description, whereGraphModel
is the entry point. -
-
Uses of Element in org.gephi.appearance.api
Methods in org.gephi.appearance.api that return types with arguments of type Element Modifier and Type Method Description Class<? extends Element>
Function. getElementClass()
Returns the element class this function will be applied to.Methods in org.gephi.appearance.api with parameters of type Element Modifier and Type Method Description float
Ranking. getNormalizedValue(Element element, Graph graph)
Returns the element's normalized value for this ranking.Object
Partition. getValue(Element element, Graph graph)
Returns the element's value for this partition.Number
Ranking. getValue(Element element, Graph graph)
Returns the element's value for this ranking.void
Function. transform(Element element)
Transforms the given element.Method parameters in org.gephi.appearance.api with type arguments of type Element Modifier and Type Method Description void
Function. transformAll(Iterable<? extends Element> elementIterable)
Transforms all the given elements. -
Uses of Element in org.gephi.appearance.spi
Classes in org.gephi.appearance.spi with type parameters of type Element Modifier and Type Interface Description interface
PartitionTransformer<E extends Element>
Partition transformer that transforms an element based on a categorical partition column.interface
RankingTransformer<E extends Element>
Ranking transformer that transforms an element based on a numerical ranking column.interface
SimpleTransformer<E extends Element>
Basic transformer that takes only an element to transform it. -
Uses of Element in org.gephi.datalab.api
Methods in org.gephi.datalab.api that return Element Modifier and Type Method Description Element[]
AttributeColumnsController. getTableAttributeRows(Table table)
Returns all rows of a given table (node or edges table).Methods in org.gephi.datalab.api with parameters of type Element Modifier and Type Method Description void
AttributeColumnsController. clearRowData(Element row, Column[] columnsToClear)
Clears row attributes except computed attributes and id if node/edge row.void
AttributeColumnsController. copyRowDataToOtherRows(Element row, Element[] otherRows, Column[] columnsToCopy)
Copies attributes data of the given row to the other rows except computed attributes and id if node/edge.Number[]
AttributeColumnsController. getRowNumbers(Element row, Column[] columns)
Prepares an array with all not null numbers of a row using only the given columns.Number[]
AttributeColumnsController. getRowsColumnNumbers(Element[] rows, Column column)
Prepares an array only with all not null numbers the indicated rows of a given column.void
AttributeColumnsController. mergeRowsValues(Column[] columns, AttributeRowsMergeStrategy[] mergeStrategies, Element[] rows, Element selectedRow, Element resultRow)
Merges the given rows values to the given result row using one merge strategy for each column of the table.boolean
AttributeColumnsController. setAttributeValue(Object value, Element row, Column column)
Sets a value to the given row,column pair (cell). -
Uses of Element in org.gephi.datalab.spi.rows.merge
Methods in org.gephi.datalab.spi.rows.merge with parameters of type Element Modifier and Type Method Description void
AttributeRowsMergeStrategy. setup(Element[] rows, Element selectedRow, Column column)
Prepare column and rows for this merge strategy. -
Uses of Element in org.gephi.datalab.spi.values
Methods in org.gephi.datalab.spi.values with parameters of type Element Modifier and Type Method Description void
AttributeValueManipulator. setup(Element row, Column column)
Prepare the AttributeValue data. -
Uses of Element in org.gephi.filters.spi
Classes in org.gephi.filters.spi with type parameters of type Element Modifier and Type Interface Description interface
ElementFilter<K extends Element>
Basic filters for elements (nodes or edges). -
Uses of Element in org.gephi.graph.api
Classes in org.gephi.graph.api with type parameters of type Element Modifier and Type Interface Description interface
ColumnIndex<K,T extends Element>
A column index is associated with a column and and keeps track of each unique value and can also return the minimum and maximum values in case of a sortable value type.interface
ElementIterable<T extends Element>
Element iterable.interface
Index<T extends Element>
An index is associated with each table and keeps track of each unique value in columns.interface
TimeIndex<T extends Element>
Holds an index based on time attributes.Subinterfaces of Element in org.gephi.graph.api Modifier and Type Interface Description interface
Edge
An edge.interface
Node
A node.Methods in org.gephi.graph.api with type parameters of type Element Modifier and Type Method Description <K extends Element>
ElementIterable<K>ColumnDiff. getTouchedElements()
Gets all elements which attribute value changedMethods in org.gephi.graph.api that return Element Modifier and Type Method Description Element
ElementIterable.ElementIterableEmpty. next()
Element[]
ElementIterable.ElementIterableEmpty. toArray()
T[]
ElementIterable. toArray()
Returns the iterator content as an array.Methods in org.gephi.graph.api that return types with arguments of type Element Modifier and Type Method Description Index<Element>
GraphModel. getElementIndex(Table table)
Gets the node or edge index depending on the column provided.Index<Element>
GraphModel. getElementIndex(Table table, GraphView view)
Gets the node or edge index for the given graph view.Iterator<Element>
ElementIterable.ElementIterableEmpty. iterator()
Collection<Element>
ElementIterable.ElementIterableEmpty. toCollection()
Set<Element>
ElementIterable.ElementIterableEmpty. toSet()
-