Format Class

public final class Format
extends ExpandableStringEnum<Format>

This is a required field, it specifies the format for the inventory files.

Field Summary

Modifier and Type Field and Description
static final Format CSV

Static value Csv for Format.

static final Format PARQUET

Static value Parquet for Format.

Constructor Summary

Constructor Description
Format()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of Format value.

Method Summary

Modifier and Type Method and Description
static Format fromString(String name)

Creates or finds a Format from its string representation.

static Collection<Format> values()

Gets known Format values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

CSV

public static final Format CSV

Static value Csv for Format.

PARQUET

public static final Format PARQUET

Static value Parquet for Format.

Constructor Details

Format

@Deprecated
public Format()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of Format value.

Method Details

fromString

public static Format fromString(String name)

Creates or finds a Format from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding Format.

values

public static Collection values()

Gets known Format values.

Returns:

known Format values.

Applies to