public enum Format extends Enum<Format>
documentation for detailed specifications of each format.
Enum Constant and Description |
---|
ADJ_LIST
Adjacency List File Format
|
EDGE_LIST
Edge List file format
|
GRAPHML
GraphML File Format
|
MULTI_TABLES_DB
Multiple database tables Format
|
PG
Property Graph (PG) Database Format
|
PGB
PGX Binary File Format (formally EBIN)
|
RDF
/** Resource Description Framework (RDF) Database Format
|
TWO_TABLES_DB
Two-Tables Database Format
|
TWO_TABLES_TEXT
TWO text file format (nodes, edges)
|
Modifier and Type | Method and Description |
---|---|
static Format |
parseFormat(String input)
Parses a format given as string.
|
String |
toKey() |
String |
toString() |
static Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Format[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Format ADJ_LIST
public static final Format EDGE_LIST
public static final Format GRAPHML
public static final Format MULTI_TABLES_DB
public static final Format PG
public static final Format PGB
public static final Format RDF
public static final Format TWO_TABLES_DB
public static final Format TWO_TABLES_TEXT
public static Format parseFormat(String input)
input
- the input stringpublic String toKey()
public static Format valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static Format[] values()
for (Format c : Format.values()) System.out.println(c);
Copyright © 2015. All rights reserved.