Enum Class Scan.ColumnarSupportMode

Object
Enum<Scan.ColumnarSupportMode>
org.apache.spark.sql.connector.read.Scan.ColumnarSupportMode
All Implemented Interfaces:
Serializable, Comparable<Scan.ColumnarSupportMode>, Constable
Enclosing interface:
Scan

public static enum Scan.ColumnarSupportMode extends Enum<Scan.ColumnarSupportMode>
This enum defines how the columnar support for the partitions of the data source should be determined. The default value is `PARTITION_DEFINED` which indicates that each partition can determine if it should be columnar or not. SUPPORTED and UNSUPPORTED provide default shortcuts to indicate support for columnar data or not.
Since:
3.5.0
  • Enum Constant Details

  • Method Details

    • values

      public static Scan.ColumnarSupportMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Scan.ColumnarSupportMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null