| Type | Property and Description | 
|---|---|
boolean | 
supportsLoadingVertexLabelFrom  | 
| Enum Constant and Description | 
|---|
ADJ_LIST
Adjacency List File Format 
 | 
EDGE_LIST
Edge List file format 
 | 
FLAT_FILE
Flat 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
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. 
 | 
static Format | 
parseFormat(java.lang.String input)
Parses a format given as string 
 | 
boolean | 
supportsEdgeLabel()  | 
boolean | 
supportsLoadingVertexLabelFromProperty()  | 
boolean | 
supportsPropertyConversion()  | 
boolean | 
supportsSkippingEdges()  | 
boolean | 
supportsSkippingVertices()  | 
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 EDGE_LIST
public static final Format FLAT_FILE
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
public boolean supportsLoadingVertexLabelFromProperty
public boolean hasVerticesAndEdgesSeparatedFileFormat()
public boolean hasVerticesAndEdgesSeparatedFormat()
public boolean isFileFormat()
public static Format parseFormat(java.lang.String input)
input - the input stringpublic boolean supportsEdgeLabel()
public boolean supportsLoadingVertexLabelFromProperty()
public boolean supportsPropertyConversion()
public boolean supportsSkippingEdges()
public boolean supportsSkippingVertices()
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);
Copyright © 2016, 2018 Oracle and/or its affiliates. All Rights Reserved.