Uses of Interface
org.gephi.graph.api.Column
-
Packages that use Column Package Description org.gephi.graph.api Complete API description, whereGraphModelis the entry point. -
-
Uses of Column in org.gephi.graph.api
Methods in org.gephi.graph.api that return Column Modifier and Type Method Description ColumnTable. addColumn(String id, Class type)Adds a new column to this table.ColumnTable. addColumn(String id, Class type, Origin origin)Adds a new column to this table.ColumnTable. addColumn(String id, String title, Class type, Object defaultValue)Adds a new column to this table.ColumnTable. addColumn(String id, String title, Class type, Origin origin, Object defaultValue, boolean indexed)Adds a new column to this table.ColumnGraphModel.DefaultColumns. degree()Return node degree column.ColumnGraphModel.DefaultColumns. edgeId()Return edge identifier column.ColumnGraphModel.DefaultColumns. edgeLabel()Return edge label column.ColumnGraphModel.DefaultColumns. edgeTimeSet()Return edge time-set (timestamp or interval) column.ColumnGraphModel.DefaultColumns. edgeType()Return edge type column.ColumnGraphModel.DefaultColumns. edgeWeight()Return edge weigth column.ColumnColumnIndex. getColumn()Returns the column for which this column index belongs to.ColumnColumnObserver. getColumn()Gets the column this observer belongs to.ColumnTable. getColumn(int index)Returns the column at the given index.ColumnTable. getColumn(String id)Returns the column with the given identifier.ColumnGraphModel.DefaultColumns. inDegree()Return node in-degree column.ColumnGraphModel.DefaultColumns. nodeId()Return node identifier column.ColumnGraphModel.DefaultColumns. nodeLabel()Return node label column.ColumnGraphModel.DefaultColumns. nodeTimeSet()Return node time-set (timestamp or interval) column.ColumnGraphModel.DefaultColumns. outDegree()Return node out-degree column.Column[]ColumnIterable. toArray()Returns the iterator content as an array.Methods in org.gephi.graph.api that return types with arguments of type Column Modifier and Type Method Description List<Column>TableDiff. getAddedColumns()Gets all added columns.List<Column>TableDiff. getModifiedColumns()Returns all columns that have been modified.List<Column>TableDiff. getRemovedColumns()Gets all removed columns.Iterator<Column>ColumnIterable. iterator()Returns the element iterator.List<Column>ColumnIterable. toList()Returns the iterator content as a list.Methods in org.gephi.graph.api with parameters of type Column Modifier and Type Method Description intIndex. count(Column column, Object value)Counts the elements with value in the given column.intIndex. countElements(Column column)Counts the elements in the given column.intIndex. countValues(Column column)Counts the unique values in the given column.Iterable<T>Index. get(Column column, Object value)Gets an Iterable of all elements in the index with value in the given column.ObjectElement. getAttribute(Column column)Gets the attribute for the given column.ObjectElement. getAttribute(Column column, double timestamp)Gets the attribute for the given column and timestamp.ObjectElement. getAttribute(Column column, GraphView view)Gets the attribute for the given column and graph view.ObjectElement. getAttribute(Column column, Interval interval)Gets the attribute for the given column and interval.Iterable<Map.Entry>Element. getAttributes(Column column)Returns an iterable over all the keys and values over time for the given (dynamic) column.ColumnIndexIndex. getColumnIndex(Column column)Returns the column index for the given column.NumberIndex. getMaxValue(Column column)Returns the maximum value in the given column.NumberIndex. getMinValue(Column column)Returns the minimum value in the given column.static booleanAttributeUtils. isEdgeColumn(Column colum)Returns true if the given column is an edge column.static booleanAttributeUtils. isNodeColumn(Column colum)Returns true if the given column is a node column.booleanIndex. isSortable(Column column)Returns whether the column is numeric and sortable, and therefore methodsIndex.getMinValue(org.gephi.graph.api.Column)andIndex.getMaxValue(org.gephi.graph.api.Column)are available for the column.ObjectElement. removeAttribute(Column column)Removes the attribute at the given column.ObjectElement. removeAttribute(Column column, double timestamp)Removes the attribute at the given column and timestamp.ObjectElement. removeAttribute(Column column, Interval interval)Removes the attribute at the given column and interval.voidTable. removeColumn(Column column)Removes the given column from this table.voidElement. setAttribute(Column column, Object value)Sets the attribute with the given column and value.voidElement. setAttribute(Column column, Object value, double timestamp)Sets the attribute at the given column and timestamp.voidElement. setAttribute(Column column, Object value, Interval interval)Sets the attribute at the given column and interval.CollectionIndex. values(Column column)Returns all unique values in the given column.
-