Package io.trino.tests.product.iceberg
Enum TestIcebergSparkCompatibility.StorageFormat
- java.lang.Object
-
- java.lang.Enum<TestIcebergSparkCompatibility.StorageFormat>
-
- io.trino.tests.product.iceberg.TestIcebergSparkCompatibility.StorageFormat
-
- All Implemented Interfaces:
Serializable,Comparable<TestIcebergSparkCompatibility.StorageFormat>
- Enclosing class:
- TestIcebergSparkCompatibility
public static enum TestIcebergSparkCompatibility.StorageFormat extends Enum<TestIcebergSparkCompatibility.StorageFormat>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisSupportedInTrino()static TestIcebergSparkCompatibility.StorageFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static TestIcebergSparkCompatibility.StorageFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARQUET
public static final TestIcebergSparkCompatibility.StorageFormat PARQUET
-
ORC
public static final TestIcebergSparkCompatibility.StorageFormat ORC
-
AVRO
public static final TestIcebergSparkCompatibility.StorageFormat AVRO
-
-
Method Detail
-
values
public static TestIcebergSparkCompatibility.StorageFormat[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TestIcebergSparkCompatibility.StorageFormat c : TestIcebergSparkCompatibility.StorageFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestIcebergSparkCompatibility.StorageFormat valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isSupportedInTrino
public boolean isSupportedInTrino()
-
-