| Package | Description |
|---|---|
| org.gephi.graph.api |
Complete API description, where
GraphModel is the entry point. |
| Modifier and Type | Method and Description |
|---|---|
Column |
Table.addColumn(String id,
Class type)
Adds a new column to this table.
|
Column |
Table.addColumn(String id,
Class type,
Origin origin)
Adds a new column to this table.
|
Column |
Table.addColumn(String id,
String title,
Class type,
Object defaultValue)
Adds a new column to this table.
|
Column |
Table.addColumn(String id,
String title,
Class type,
Origin origin,
Object defaultValue,
boolean indexed)
Adds a new column to this table.
|
Column |
ColumnObserver.getColumn()
Gets the column this observer belongs to.
|
Column |
Table.getColumn(int index)
Returns the column at the given index.
|
Column |
Table.getColumn(String id)
Returns the column with the given identifier.
|
Column[] |
ColumnIterable.toArray()
Returns the iterator content as an array.
|
| Modifier and Type | Method and 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.
|
| Modifier and Type | Method and Description |
|---|---|
int |
Index.count(Column column,
Object value)
Counts the elements with value in the given column.
|
int |
Index.countElements(Column column)
Counts the elements in the given column.
|
int |
Index.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.
|
Object |
Element.getAttribute(Column column)
Gets the attribute for the given column.
|
Object |
Element.getAttribute(Column column,
double timestamp)
Gets the attribute for the given column and timestamp.
|
Object |
Element.getAttribute(Column column,
GraphView view)
Gets the attribute for the given column and graph view.
|
Object |
Element.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
column.
|
Number |
Index.getMaxValue(Column column)
Returns the maximum value in the given column.
|
Number |
Index.getMinValue(Column column)
Returns the minimum value in the given column.
|
static boolean |
AttributeUtils.isEdgeColumn(Column colum)
Returns true if the given column is an edge column.
|
static boolean |
AttributeUtils.isNodeColumn(Column colum)
Returns true if the given column is a node column.
|
Object |
Element.removeAttribute(Column column)
Removes the attribute at the given column.
|
Object |
Element.removeAttribute(Column column,
double timestamp)
Removes the attribute at the given column and timestamp.
|
Object |
Element.removeAttribute(Column column,
Interval interval)
Removes the attribute at the given column and interval.
|
void |
Table.removeColumn(Column column)
Removes the given column from this table.
|
void |
Element.setAttribute(Column column,
Object value)
Sets the attribute with the given column and value.
|
void |
Element.setAttribute(Column column,
Object value,
double timestamp)
Sets the attribute at the given column and timestamp.
|
void |
Element.setAttribute(Column column,
Object value,
Interval interval)
Sets the attribute at the given column and interval.
|
Collection |
Index.values(Column column)
Returns all unique values in the given column.
|
Copyright © 2013–2015. All rights reserved.