A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

E

e - Variable in class edu.iu.cnets.klatsch.lang.VEdge
the edge we're encapsulating
e - Variable in class edu.iu.cnets.klatsch.lang.VEvent
the event we're encapsulating
EAdd - Class in edu.iu.cnets.klatsch.expression
Addition expression.
EAdd(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EAdd
 
EAnd - Class in edu.iu.cnets.klatsch.expression
Logical AND expression.
EAnd(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EAnd
 
EAssign - Class in edu.iu.cnets.klatsch.expression
This class is used to represent variable assignments.
EAssign(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EAssign
 
EBlock - Class in edu.iu.cnets.klatsch.expression
This class is used to represent block (BEGIN ...
EBlock(Expression[]) - Constructor for class edu.iu.cnets.klatsch.expression.EBlock
 
ECall - Class in edu.iu.cnets.klatsch.expression
This class is used to represent function calls.
ECall(Expression, Expression[]) - Constructor for class edu.iu.cnets.klatsch.expression.ECall
 
ECallMethod - Class in edu.iu.cnets.klatsch.expression
This class is used to represent function calls.
ECallMethod(Expression, String, Expression[]) - Constructor for class edu.iu.cnets.klatsch.expression.ECallMethod
 
Edge - Class in edu.iu.cnets.klatsch.model
This is the basic class for representing an edge from a feed of social events.
Edge() - Constructor for class edu.iu.cnets.klatsch.model.Edge
Default constructor for internal use.
Edge(Node, Node, int, int, double, double) - Constructor for class edu.iu.cnets.klatsch.model.Edge
Constructor specifying all fields.
Edge(Node, Node, double, double) - Constructor for class edu.iu.cnets.klatsch.model.Edge
Simplified constructor that uses "now" as a timestamp.
Edge(Node, Node) - Constructor for class edu.iu.cnets.klatsch.model.Edge
Simplied constructor with a default weight of 1.0, that is completely trusted.
Edge(Edge, Edge) - Constructor for class edu.iu.cnets.klatsch.model.Edge
Builds a new edge by merging two existing edges, which should have the same endpoints.
edgeCount() - Method in class edu.iu.cnets.klatsch.model.basic.BasicGraph
Returns the total number of edges.
edgeCount() - Method in class edu.iu.cnets.klatsch.model.gephi.GephiGraph
Returns the total number of edges.
edgeCount() - Method in interface edu.iu.cnets.klatsch.model.Graph
 
edges - Variable in class edu.iu.cnets.klatsch.model.basic.BasicEvent
 
edges() - Method in class edu.iu.cnets.klatsch.model.basic.BasicEvent
 
edges - Variable in class edu.iu.cnets.klatsch.model.basic.BasicGraph
the set of all forward edges in the graph
edges() - Method in class edu.iu.cnets.klatsch.model.basic.BasicGraph
Returns an iterable over the edges.
edges() - Method in interface edu.iu.cnets.klatsch.model.Event
Returns an iterator over the edges in this event.
edges() - Method in class edu.iu.cnets.klatsch.model.gephi.GephiGraph
Returns an iterable over the edges.
edges() - Method in interface edu.iu.cnets.klatsch.model.Graph
 
edgesIn(Node) - Method in class edu.iu.cnets.klatsch.model.basic.BasicGraph
Returns an iterable over the edges with this node as a destination.
edgesIn(Node) - Method in class edu.iu.cnets.klatsch.model.gephi.GephiGraph
Returns an iterable over the edges with this node as a destination.
edgesIn(Node) - Method in interface edu.iu.cnets.klatsch.model.Graph
 
edgesOut(Node) - Method in class edu.iu.cnets.klatsch.model.basic.BasicGraph
Returns an iterable over the edges with this node as a source.
edgesOut(Node) - Method in class edu.iu.cnets.klatsch.model.gephi.GephiGraph
Returns an iterable over the edges with this node as a source.
edgesOut(Node) - Method in interface edu.iu.cnets.klatsch.model.Graph
 
EDictionary - Class in edu.iu.cnets.klatsch.expression
This expression is a dictionary literal { k0:v0, ...
EDictionary(Pair[]) - Constructor for class edu.iu.cnets.klatsch.expression.EDictionary
 
EDivide - Class in edu.iu.cnets.klatsch.expression
Division expression.
EDivide(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EDivide
 
EDo - Class in edu.iu.cnets.klatsch.expression
This class is used to represent DO/WHILE loops.
EDo(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EDo
 
edu.iu.cnets.klatsch - package edu.iu.cnets.klatsch
 
edu.iu.cnets.klatsch.exception - package edu.iu.cnets.klatsch.exception
 
edu.iu.cnets.klatsch.expression - package edu.iu.cnets.klatsch.expression
 
edu.iu.cnets.klatsch.feed - package edu.iu.cnets.klatsch.feed
 
edu.iu.cnets.klatsch.gui - package edu.iu.cnets.klatsch.gui
 
edu.iu.cnets.klatsch.lang - package edu.iu.cnets.klatsch.lang
 
edu.iu.cnets.klatsch.misc - package edu.iu.cnets.klatsch.misc
 
edu.iu.cnets.klatsch.model - package edu.iu.cnets.klatsch.model
 
edu.iu.cnets.klatsch.model.basic - package edu.iu.cnets.klatsch.model.basic
 
edu.iu.cnets.klatsch.model.gephi - package edu.iu.cnets.klatsch.model.gephi
 
edu.iu.cnets.klatsch.pane - package edu.iu.cnets.klatsch.pane
 
edu.iu.cnets.klatsch.parser - package edu.iu.cnets.klatsch.parser
 
edu.iu.cnets.klatsch.stream - package edu.iu.cnets.klatsch.stream
 
EFor - Class in edu.iu.cnets.klatsch.expression
This class is used to represent FOR/IN loops.
EFor(String, Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EFor
 
EIf - Class in edu.iu.cnets.klatsch.expression
This class is used to represent conditional (IF) expressions.
EIf(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EIf
 
EIf(Expression, Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EIf
 
EList - Class in edu.iu.cnets.klatsch.expression
This expression is a list literal [e0, ...].
EList(Expression[]) - Constructor for class edu.iu.cnets.klatsch.expression.EList
 
ELValue - Class in edu.iu.cnets.klatsch.expression
This class is used to represent assignable locations.
ELValue(String) - Constructor for class edu.iu.cnets.klatsch.expression.ELValue
 
EModulus - Class in edu.iu.cnets.klatsch.expression
Modulus expression.
EModulus(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EModulus
 
EMultiply - Class in edu.iu.cnets.klatsch.expression
Multiplication expression.
EMultiply(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EMultiply
 
end - Variable in class edu.iu.cnets.klatsch.stream.SRange
the initial, final, and step values
endTime - Variable in class edu.iu.cnets.klatsch.model.Edge
the timestamp of the latest data contributing to the weight of the edge
endTime() - Method in class edu.iu.cnets.klatsch.model.Edge
Returns the ending timestamp for the edge.
ENegate - Class in edu.iu.cnets.klatsch.expression
This is a negation expression.
ENegate(Expression) - Constructor for class edu.iu.cnets.klatsch.expression.ENegate
 
ENot - Class in edu.iu.cnets.klatsch.expression
This is a logical NOT expression.
ENot(Expression) - Constructor for class edu.iu.cnets.klatsch.expression.ENot
 
ENumber - Class in edu.iu.cnets.klatsch.expression
This expression is a numeric literal.
ENumber(double) - Constructor for class edu.iu.cnets.klatsch.expression.ENumber
 
env - Variable in class edu.iu.cnets.klatsch.lang.Runtime
 
env - Variable in class edu.iu.cnets.klatsch.lang.VClosure
 
eof() - Method in class edu.iu.cnets.klatsch.parser.TokenStream
Determines if the stream is at its end.
EOr - Class in edu.iu.cnets.klatsch.expression
Logical OR expression.
EOr(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EOr
 
EParen - Class in edu.iu.cnets.klatsch.expression
This is a parenthetical expression.
EParen(Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EParen
 
EPower - Class in edu.iu.cnets.klatsch.expression
Exponentiation expression.
EPower(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EPower
 
EProcedure - Class in edu.iu.cnets.klatsch.expression
This class is used to represent procedure definitions, which evaluate to closures.
EProcedure(String[], Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EProcedure
 
equals(Object) - Method in class edu.iu.cnets.klatsch.lang.VString
This override is necessary to use the class as a key in a HashMap object.
equals(Object) - Method in class edu.iu.cnets.klatsch.model.basic.BasicNode
 
equals(Object) - Method in class edu.iu.cnets.klatsch.model.Edge
Implemented for use with Hashtable.
equals(Object) - Method in class edu.iu.cnets.klatsch.model.gephi.GephiNode
 
ERelational - Class in edu.iu.cnets.klatsch.expression
Relational expression.
ERelational(ERelational.Type, Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.ERelational
 
ERelational.Type - Enum in edu.iu.cnets.klatsch.expression
 
ERelational.Type() - Constructor for enum edu.iu.cnets.klatsch.expression.ERelational.Type
 
ESC - Static variable in class edu.iu.cnets.klatsch.misc.VT100
 
EString - Class in edu.iu.cnets.klatsch.expression
This expression is a string literal.
EString(String) - Constructor for class edu.iu.cnets.klatsch.expression.EString
 
ESubtract - Class in edu.iu.cnets.klatsch.expression
Subtraction expression.
ESubtract(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.ESubtract
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EAdd
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EAnd
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EAssign
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EBlock
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.ECall
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.ECallMethod
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EDictionary
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EDivide
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EDo
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EFor
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EIf
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EList
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.ELValue
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EModulus
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EMultiply
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.ENegate
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.ENot
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.ENumber
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EOr
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EParen
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EPower
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EProcedure
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.ERelational
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EString
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.ESubtract
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.EWhile
 
evaluate(Runtime) - Method in class edu.iu.cnets.klatsch.expression.Expression
 
evaluateToClass(Runtime, Class<?>) - Method in class edu.iu.cnets.klatsch.expression.Expression
The method is used to require that the expression evaluate to a particular data type.
EvaluationException - Exception in edu.iu.cnets.klatsch.exception
This class supports exception handling for problems at the evaluation level.
EvaluationException(String) - Constructor for exception edu.iu.cnets.klatsch.exception.EvaluationException
Initializes with an error message.
Event - Interface in edu.iu.cnets.klatsch.model
This is the interface for working with an event from a feed of social events.
events(int, int) - Method in class edu.iu.cnets.klatsch.feed.Buzz
Returns an iterator over all events in the given time range.
events(int) - Method in class edu.iu.cnets.klatsch.feed.Random
Standard interface function.
events(int, int) - Method in class edu.iu.cnets.klatsch.feed.Random
Standard interface function.
events(int, int) - Method in class edu.iu.cnets.klatsch.feed.Truthy
Returns an iterator over all events in the given time range.
events(int, int) - Method in interface edu.iu.cnets.klatsch.model.Feed
Returns an iterator over all events in the given time interval.
EWhile - Class in edu.iu.cnets.klatsch.expression
This class is used to represent WHILE loops.
EWhile(Expression, Expression) - Constructor for class edu.iu.cnets.klatsch.expression.EWhile
 
exp - Variable in class edu.iu.cnets.klatsch.expression.ENegate
 
exp - Variable in class edu.iu.cnets.klatsch.expression.ENot
 
exp - Variable in class edu.iu.cnets.klatsch.expression.EParen
 
expA - Variable in class edu.iu.cnets.klatsch.expression.EAdd
 
expA - Variable in class edu.iu.cnets.klatsch.expression.EAnd
 
expA - Variable in class edu.iu.cnets.klatsch.expression.EDivide
 
expA - Variable in class edu.iu.cnets.klatsch.expression.EModulus
 
expA - Variable in class edu.iu.cnets.klatsch.expression.EMultiply
 
expA - Variable in class edu.iu.cnets.klatsch.expression.EOr
 
expA - Variable in class edu.iu.cnets.klatsch.expression.ERelational
 
expA - Variable in class edu.iu.cnets.klatsch.expression.ESubtract
 
expArgs - Variable in class edu.iu.cnets.klatsch.expression.ECall
 
expArgs - Variable in class edu.iu.cnets.klatsch.expression.ECallMethod
 
expB - Variable in class edu.iu.cnets.klatsch.expression.EAdd
 
expB - Variable in class edu.iu.cnets.klatsch.expression.EAnd
 
expB - Variable in class edu.iu.cnets.klatsch.expression.EDivide
 
expB - Variable in class edu.iu.cnets.klatsch.expression.EModulus
 
expB - Variable in class edu.iu.cnets.klatsch.expression.EMultiply
 
expB - Variable in class edu.iu.cnets.klatsch.expression.EOr
 
expB - Variable in class edu.iu.cnets.klatsch.expression.ERelational
 
expB - Variable in class edu.iu.cnets.klatsch.expression.ESubtract
 
expBase - Variable in class edu.iu.cnets.klatsch.expression.EPower
 
expBody - Variable in class edu.iu.cnets.klatsch.expression.EDo
 
expBody - Variable in class edu.iu.cnets.klatsch.expression.EFor
 
expBody - Variable in class edu.iu.cnets.klatsch.expression.EProcedure
 
expBody - Variable in class edu.iu.cnets.klatsch.expression.EWhile
 
expElse - Variable in class edu.iu.cnets.klatsch.expression.EIf
 
expExp - Variable in class edu.iu.cnets.klatsch.expression.EPower
 
expFunc - Variable in class edu.iu.cnets.klatsch.expression.ECall
 
expKey - Variable in class edu.iu.cnets.klatsch.expression.Pair
 
expList - Variable in class edu.iu.cnets.klatsch.expression.EBlock
 
expList - Variable in class edu.iu.cnets.klatsch.expression.EList
 
expObj - Variable in class edu.iu.cnets.klatsch.expression.ECallMethod
 
export(String, String) - Method in class edu.iu.cnets.klatsch.model.basic.BasicGraph
Exports the graph in the given format.
export(String, String) - Method in class edu.iu.cnets.klatsch.model.gephi.GephiGraph
Exports the graph in the given format.
export(String, String) - Method in interface edu.iu.cnets.klatsch.model.Graph
 
Expression - Class in edu.iu.cnets.klatsch.expression
This is the base class of every variety of expression.
Expression() - Constructor for class edu.iu.cnets.klatsch.expression.Expression
 
expStream - Variable in class edu.iu.cnets.klatsch.expression.EFor
 
expTest - Variable in class edu.iu.cnets.klatsch.expression.EDo
 
expTest - Variable in class edu.iu.cnets.klatsch.expression.EIf
 
expTest - Variable in class edu.iu.cnets.klatsch.expression.EWhile
 
expThen - Variable in class edu.iu.cnets.klatsch.expression.EIf
 
expVal - Variable in class edu.iu.cnets.klatsch.expression.EAssign
 
expVal - Variable in class edu.iu.cnets.klatsch.expression.Pair
 
expVar - Variable in class edu.iu.cnets.klatsch.expression.EAssign
 
extend(String, Value) - Method in class edu.iu.cnets.klatsch.lang.Runtime
Extends this environment with a single ID/value binding.
extend(String[], Value[]) - Method in class edu.iu.cnets.klatsch.lang.Runtime
Extends this environment with multiple ID and value bindings.

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z