public static enum FileGraphStoringConfig.Field extends java.lang.Enum<FileGraphStoringConfig.Field> implements ConfigField
| Enum Constant and Description | 
|---|
BASE_PATH
base path to use for storing a graph; file paths will be constructed using the following format <base_path>_<partition_index>.<extension>_, i.e. 
 | 
COMPRESSION_SCHEME
the scheme to use for compression, or none to disable compression 
 | 
DELIMITER
delimiter character used as separator when storing. 
 | 
EDGE_EXTENSION
the extension to use when creating edge file partitions 
 | 
INITIAL_PARTITION_INDEX
the value used as initial partition index, i.e. 
 | 
NUM_PARTITIONS
the number of partitions that should be created, when exporting to multiple files 
 | 
ROW_EXTENSION
the extension to use when creating row file partitions 
 | 
VERTEX_EXTENSION
the extension to use when creating vertex file partitions 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.Object | 
getDefaultVal()
Gets the default value of this field. 
 | 
java.util.List<java.lang.String> | 
getKeyAliases()
Gets the key aliases of this field which are also recognized during parsing. 
 | 
java.util.List<java.lang.String> | 
getSingletonListKeyAliases()
Gets the key aliases of this field which contain single values for lists and are also recognized during parsing. 
 | 
java.lang.Class<?> | 
getType()
Gets the type of this field. 
 | 
boolean | 
isArray()
Checks if this field is an array. 
 | 
boolean | 
isHidden()
Checks if this field should be hidden. 
 | 
boolean | 
isPath()
Checks if this field is a path. 
 | 
boolean | 
isRequired()
Checks if this field is required. 
 | 
boolean | 
isSensitive()
Checks if this field holds a sensitive data. 
 | 
java.lang.String | 
toKey()
Get the key of this field, which is how this field is represented in serialized form. 
 | 
java.lang.String | 
toString()  | 
static FileGraphStoringConfig.Field | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static FileGraphStoringConfig.Field[] | 
values()
Returns an array containing the constants of this enum type, in the order they are declared. 
 | 
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOfisEnum, isPrimitivepublic static final FileGraphStoringConfig.Field BASE_PATH
public static final FileGraphStoringConfig.Field COMPRESSION_SCHEME
public static final FileGraphStoringConfig.Field DELIMITER
public static final FileGraphStoringConfig.Field EDGE_EXTENSION
public static final FileGraphStoringConfig.Field INITIAL_PARTITION_INDEX
public static final FileGraphStoringConfig.Field NUM_PARTITIONS
public static final FileGraphStoringConfig.Field ROW_EXTENSION
public static final FileGraphStoringConfig.Field VERTEX_EXTENSION
public java.lang.Object getDefaultVal()
ConfigFieldgetDefaultVal in interface ConfigFieldpublic java.util.List<java.lang.String> getKeyAliases()
ConfigFieldgetKeyAliases in interface ConfigFieldpublic java.util.List<java.lang.String> getSingletonListKeyAliases()
ConfigFieldgetSingletonListKeyAliases in interface ConfigFieldpublic java.lang.Class<?> getType()
ConfigFieldgetType in interface ConfigFieldpublic boolean isArray()
ConfigFieldisArray in interface ConfigFieldpublic boolean isHidden()
ConfigFieldisHidden in interface ConfigFieldpublic boolean isPath()
ConfigFieldisPath in interface ConfigFieldpublic boolean isRequired()
ConfigFieldisRequired in interface ConfigFieldpublic boolean isSensitive()
ConfigFieldisSensitive in interface ConfigFieldpublic java.lang.String toKey()
ConfigFieldtoKey in interface ConfigFieldpublic java.lang.String toString()
toString in class java.lang.Enum<FileGraphStoringConfig.Field>public static FileGraphStoringConfig.Field 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 FileGraphStoringConfig.Field[] values()
for (FileGraphStoringConfig.Field c : FileGraphStoringConfig.Field.values())
    System.out.println(c);
Copyright © 2010, 2020 Oracle and/or its affiliates. All Rights Reserved.