SparkseeNet
6.0.2
|
Classes | |
class | Attribute |
Attribute data class. More... | |
class | AttributeList |
Sparksee attribute identifier list. More... | |
class | AttributeListIterator |
AttributeList iterator class. More... | |
class | AttributeStatistics |
Attribute statistics class. More... | |
class | BooleanList |
Boolean list. More... | |
class | BooleanListIterator |
BooleanList iterator class. More... | |
class | Database |
Database class. More... | |
class | DatabaseStatistics |
Database statistics. More... | |
class | DefaultExport |
Default implementation for ExportManager class. More... | |
class | EdgeData |
Edge data class. More... | |
class | EdgeExport |
Stores edge exporting values. More... | |
class | ExportManager |
Defines how to export a graph to an external format. More... | |
class | Graph |
Graph class. More... | |
class | GraphExport |
Stores the graph exporting values. More... | |
class | Int32List |
Sparksee 32-bit signed integer list. More... | |
class | Int32ListIterator |
Int32List iterator class. More... | |
class | KeyValue |
class | KeyValues |
Value set class. More... | |
class | NodeExport |
Stores the node exporting values. More... | |
class | Objects |
Object identifier set class. More... | |
class | ObjectsIterator |
ObjectsIterator class. More... | |
class | OIDList |
Sparksee object identifier list. More... | |
class | OIDListIterator |
OIDList iterator class. More... | |
class | Platform |
Platform class. More... | |
class | PlatformStatistics |
Platform data and statistics. More... | |
class | Query |
Query class. More... | |
class | QueryContext |
Query context interface. More... | |
class | QueryStream |
Query stream interface. More... | |
class | ResultSet |
ResultSet class. More... | |
class | ResultSetList |
ResultSet list. More... | |
class | ResultSetListIterator |
ResultSetList iterator class. More... | |
class | Session |
Session class. More... | |
class | Sparksee |
Sparksee class. More... | |
class | SparkseeConfig |
Sparksee configuration class. More... | |
class | SparkseeProperties |
Sparksee properties file. More... | |
class | StringList |
String list. More... | |
class | StringListIterator |
StringList iterator class. More... | |
class | TextStream |
TextStream class. More... | |
class | Type |
Type data class. More... | |
class | TypeList |
Sparksee type identifier list. More... | |
class | TypeListIterator |
TypeList iterator class. More... | |
class | Value |
Value class. More... | |
class | ValueArray |
ValueArray class. More... | |
class | ValueList |
Value list. More... | |
class | ValueListIterator |
ValueList iterator class. More... | |
class | Values |
Value set class. More... | |
class | ValuesIterator |
Values iterator class. More... | |
Enumerations | |
enum | AttributeKind { Basic, Indexed, Unique } |
Attribute kind enumeration. More... | |
enum | Condition { Equal, GreaterEqual, GreaterThan, LessEqual, LessThan, NotEqual, Like, LikeNoCase, Between, RegExp } |
Condition operators enumeration. More... | |
enum | DataType { Boolean, Integer, Long, Double, Timestamp, String, Text, OID } |
Data type (domain) enumeration. More... | |
enum | EdgesDirection { Ingoing, Outgoing, Any } |
Edges direction enumeration. More... | |
enum | ExportType { Graphviz, GraphML, YGraphML } |
Export type. More... | |
enum | LogLevel { Off, Severe, Warning, Info, Config, Fine, Debug } |
Log level enumeration. More... | |
enum | MissingEndpoint { IsError, Create, Ignore } |
The policy to follow whenever and edge endpoint is missing during a loading. More... | |
enum | NodeShape { Box, Round } |
Node shape. More... | |
enum | ObjectType { Node, Edge } |
Object type enumeration. More... | |
enum | Order { Ascendent, Descendent } |
Order enumeration. More... | |
enum | QueryLanguage { SparkseeAlgebra, SparkseeCypher } |
The supported query languages. More... | |
Attribute kind enumeration.
It determines the indexing-capabilities of an attribute.
Condition operators enumeration.
It is mainly used in the attribute-based graph select operations.
Data type (domain) enumeration.
Export type.
Graphviz |
Export to Graphviz format. Graphviz home page: http://www.graphviz.org |
GraphML |
Export to GraphML format. GraphML home page: http://graphml.graphdrawing.org/ |
YGraphML |
Export to YGRAPHML format. It is an GraphML format extended with a set of yWorks ("http://www.yworks.com") extensions. Thus, it allows for the visualization of the exported graph with the public yEd visualization tool ("http://www.yworks.com/products/yed"). |
Log level enumeration.
Log level priority order is as follows, from minimum to maximum log information: Off (log is disabled), Severe, Warning, Info, Config, Fine, Debug.
Off |
Disable log. |
Severe |
Severe log level. This is the lower log level, just errors are shown. |
Warning |
Warning log level. Errors and warnings are shown. |
Info |
Info log level. Errors, warnings and information messages are shown. |
Config |
Config log level. Errors, warnings, information messages and configuration details of the different components are shown. |
Fine |
Fine log level. This is the higher and finest public log level, everything is dumped to the log. |
Debug |
Debug log level. This is for Sparksee development purposes and just works with debug versions of the library. |