Uses of Class
org.gephi.graph.api.Interval
-
Packages that use Interval Package Description org.gephi.graph.api Complete API description, whereGraphModel
is the entry point.org.gephi.graph.api.types Custom types the API supports, in addition of primitive and arrays.org.gephi.io.importer.api API for importing data from any support.org.gephi.statistics.spi Interfaces for creating new statistics and metrics algorihms. -
-
Uses of Interval in org.gephi.graph.api
Fields in org.gephi.graph.api declared as Interval Modifier and Type Field Description static Interval
Interval. INFINITY_INTERVAL
Infinity interval on both bounds.Methods in org.gephi.graph.api that return Interval Modifier and Type Method Description Interval[]
Element. getIntervals()
Returns all the intervals this element belong to.Interval
Element. getTimeBounds()
Gets the time bounds.Interval
GraphModel. getTimeBounds()
Gets the time bounds.Interval
GraphModel. getTimeBounds(GraphView view)
Gets the time bounds for the given graph view.Interval
GraphModel. getTimeBoundsVisible()
Gets the time bounds for the visible graph.Interval
GraphView. getTimeInterval()
Gets the time interval for this view.Methods in org.gephi.graph.api with parameters of type Interval Modifier and Type Method Description boolean
Element. addInterval(Interval interval)
Adds an interval.int
Interval. compareTo(Interval interval)
Compares this interval with the specified interval for order.ElementIterable<T>
TimeIndex. get(Interval interval)
Returns all elements between the given interval (bounds included).Object
Element. getAttribute(String key, Interval interval)
Gets the attribute for the given key and interval.Object
Element. getAttribute(Column column, Interval interval)
Gets the attribute for the given column and interval.Object
Graph. getAttribute(String key, Interval interval)
Gets the attribute for the given key and intervaldouble
Edge. getWeight(Interval interval)
Returns the edge's weight at the given interval.boolean
Element. hasInterval(Interval interval)
Returns true if this element has the given interval.Object
Element. removeAttribute(String key, Interval interval)
Removes the attribute at the given key and interval.Object
Element. removeAttribute(Column column, Interval interval)
Removes the attribute at the given column and interval.void
Graph. removeAttribute(String key, Interval interval)
Removes the attribute for the given key and interval.boolean
Element. removeInterval(Interval interval)
Removes a interval.void
Element. setAttribute(String key, Object value, Interval interval)
Sets the attribute at the given key and interval.void
Element. setAttribute(Column column, Object value, Interval interval)
Sets the attribute at the given column and interval.void
Graph. setAttribute(String key, Object value, Interval interval)
Sets the attribute value for the given key and interval.void
GraphModel. setTimeInterval(GraphView view, Interval interval)
Sets the given time interval to the view.void
Edge. setWeight(double weight, Interval interval)
Sets the edge's weight at the given interval.Constructors in org.gephi.graph.api with parameters of type Interval Constructor Description Interval(Interval interval)
Copy constructor. -
Uses of Interval in org.gephi.graph.api.types
Methods in org.gephi.graph.api.types that return Interval Modifier and Type Method Description Interval
IntervalSet. getMax()
Interval
IntervalSet. getMin()
Interval[]
IntervalSet. toArray()
Interval[]
IntervalMap. toKeysArray()
Methods in org.gephi.graph.api.types with parameters of type Interval Modifier and Type Method Description boolean
IntervalSet. add(Interval interval)
boolean
IntervalMap. contains(Interval interval)
boolean
IntervalSet. contains(Interval interval)
Object
IntervalMap. get(Interval interval, Estimator estimator)
T
IntervalMap. get(Interval interval, T defaultValue)
Object
TimeMap. get(Interval interval, Estimator estimator)
Get the estimated value for the given interval.Object
TimestampMap. get(Interval interval, Estimator estimator)
boolean
IntervalBooleanMap. getBoolean(Interval interval)
Get the value for the given interval.boolean
IntervalBooleanMap. getBoolean(Interval interval, boolean defaultValue)
Get the value for the given interval.byte
IntervalByteMap. getByte(Interval interval)
Get the value for the given interval.byte
IntervalByteMap. getByte(Interval interval, byte defaultValue)
Get the value for the given interval.char
IntervalCharMap. getCharacter(Interval interval)
Get the value for the given interval.char
IntervalCharMap. getCharacter(Interval interval, char defaultValue)
Get the value for the given interval.double
IntervalDoubleMap. getDouble(Interval interval)
Get the value for the given interval.double
IntervalDoubleMap. getDouble(Interval interval, double defaultValue)
Get the value for the given interval.float
IntervalFloatMap. getFloat(Interval interval)
Get the value for the given interval.float
IntervalFloatMap. getFloat(Interval interval, float defaultValue)
Get the value for the given interval.int
IntervalIntegerMap. getInteger(Interval interval)
Get the value for the given interval.int
IntervalIntegerMap. getInteger(Interval interval, int defaultValue)
Get the value for the given interval.long
IntervalLongMap. getLong(Interval interval)
Get the value for the given interval.long
IntervalLongMap. getLong(Interval interval, long defaultValue)
Get the value for the given interval.short
IntervalShortMap. getShort(Interval interval)
Get the value for the given interval.short
IntervalShortMap. getShort(Interval interval, short defaultValue)
Get the value for the given interval.boolean
IntervalMap. put(Interval interval, T value)
boolean
IntervalMap. remove(Interval interval)
boolean
IntervalSet. remove(Interval interval)
-
Uses of Interval in org.gephi.io.importer.api
Methods in org.gephi.io.importer.api that return Interval Modifier and Type Method Description Interval
ElementDraft. getGraphInterval()
Interval
ContainerUnloader. getInterval()
-
Uses of Interval in org.gephi.statistics.spi
Methods in org.gephi.statistics.spi that return Interval Modifier and Type Method Description Interval
DynamicStatistics. getBounds()
Returns the min and max bounds.Methods in org.gephi.statistics.spi with parameters of type Interval Modifier and Type Method Description void
DynamicStatistics. loop(GraphView window, Interval interval)
Iteration of the dynamic statistics algorithm on a new interval.void
DynamicStatistics. setBounds(Interval bounds)
Sets the minimum and maximum bound
-