Enum Constant and Description |
---|
ADJ_LIST
Adjacency List File Format
|
CSV
Comma-Separated Values (CSV) Format
|
EDGE_LIST
Edge List file format
|
FLAT_FILE
Flat File Format
|
GRAPHML
GraphML File Format
|
PG
Property Graph (PG) Database Format
|
PGB
PGX Binary File Format (formerly EBIN)
|
RDF
Resource Description Framework (RDF) Database Format
|
TWO_TABLES
Two-Tables format (vertices, edges)
|
Modifier and Type | Method and Description |
---|---|
boolean |
hasVerticesAndEdgesSeparatedFileFormat()
Check if this format has vertices and edges separated in different files
|
boolean |
hasVerticesAndEdgesSeparatedFormat()
Check if this format has vertices and edges separated
|
boolean |
isFileFormat()
Check if format is a file format.
|
boolean |
isTextFormat()
Check if format is a text format.
|
static Format |
parseFormat(java.lang.String input)
Parses a format given as string
|
boolean |
supportsEdgeLabel() |
boolean |
supportsLoadingVertexLabelFromProperty() |
boolean |
supportsPartitioningWhileLoading() |
boolean |
supportsPropertyColumn() |
boolean |
supportsPropertyConversion() |
boolean |
supportsSkippingEdges() |
boolean |
supportsSkippingVertices() |
boolean |
supportsVectorProperties() |
boolean |
supportsVertexLabels() |
java.lang.String |
toKey() |
java.lang.String |
toString() |
static Format |
valueOf(java.lang.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 CSV
public static final Format EDGE_LIST
public static final Format FLAT_FILE
public static final Format GRAPHML
public static final Format PG
public static final Format PGB
public static final Format RDF
public static final Format TWO_TABLES
public boolean hasVerticesAndEdgesSeparatedFileFormat()
public boolean hasVerticesAndEdgesSeparatedFormat()
public boolean isFileFormat()
public boolean isTextFormat()
public static Format parseFormat(java.lang.String input)
input
- the input stringpublic boolean supportsEdgeLabel()
public boolean supportsLoadingVertexLabelFromProperty()
public boolean supportsPartitioningWhileLoading()
public boolean supportsPropertyColumn()
public boolean supportsPropertyConversion()
public boolean supportsSkippingEdges()
public boolean supportsSkippingVertices()
public boolean supportsVectorProperties()
public boolean supportsVertexLabels()
public java.lang.String toKey()
public java.lang.String toString()
toString
in class java.lang.Enum<Format>
public static Format valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Format[] values()
for (Format c : Format.values()) System.out.println(c);