public enum ProviderFormat extends java.lang.Enum<ProviderFormat>
Enum Constant and Description |
---|
CSV
Comma-Separated Values (CSV) Format
|
ES
Elasticsearch database Format
|
PGB
PGX Binary File Format
|
RDBMS
Relational database Format
|
Modifier and Type | Method and Description |
---|---|
boolean |
isFileFormat()
Check if format is a file format.
|
boolean |
isTextFormat()
Check if format is a text format.
|
static ProviderFormat |
parseFormat(java.lang.String input)
Parses a provider format given as string
|
boolean |
supportsPropertyColumn()
Check if format support having a column indication for properties
|
boolean |
supportsPropertyConversion() |
boolean |
supportsVectorProperties()
Check if format support having vector properties or not
|
java.lang.String |
toKey() |
java.lang.String |
toString() |
static ProviderFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProviderFormat[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ProviderFormat CSV
public static final ProviderFormat ES
public static final ProviderFormat PGB
public static final ProviderFormat RDBMS
public boolean isFileFormat()
public boolean isTextFormat()
public static ProviderFormat parseFormat(java.lang.String input)
input
- the input stringpublic boolean supportsPropertyColumn()
true
if the format supports property columns, false
otherwisepublic boolean supportsPropertyConversion()
public boolean supportsVectorProperties()
true
if the format supports vector properties, false
otherwisepublic java.lang.String toKey()
public java.lang.String toString()
toString
in class java.lang.Enum<ProviderFormat>
public static ProviderFormat 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 ProviderFormat[] values()
for (ProviderFormat c : ProviderFormat.values()) System.out.println(c);