Packages

c

org.apache.spark.sql.util

CaseInsensitiveStringMap

class CaseInsensitiveStringMap extends Map[String, String]

Case-insensitive map of string keys to string values.

This is used to pass options to v2 implementations to ensure consistent case insensitivity.

Methods that return keys in this map, like #entrySet() and #keySet(), return keys converted to lower case. This map doesn't allow null key.

Since

3.0.0

Linear Supertypes
Map[String, String], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CaseInsensitiveStringMap
  2. Map
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CaseInsensitiveStringMap(originalMap: Map[String, String])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def asCaseSensitiveMap(): Map[String, String]

    Returns the original case-sensitive map.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clear(): Unit
    Definition Classes
    CaseInsensitiveStringMap → Map
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def compute(arg0: String, arg1: BiFunction[_ >: String, _ >: String, _ <: String]): String
    Definition Classes
    Map
  9. def computeIfAbsent(arg0: String, arg1: Function[_ >: String, _ <: String]): String
    Definition Classes
    Map
  10. def computeIfPresent(arg0: String, arg1: BiFunction[_ >: String, _ >: String, _ <: String]): String
    Definition Classes
    Map
  11. def containsKey(key: Any): Boolean
    Definition Classes
    CaseInsensitiveStringMap → Map
  12. def containsValue(value: Any): Boolean
    Definition Classes
    CaseInsensitiveStringMap → Map
  13. def entrySet(): Set[Entry[String, String]]
    Definition Classes
    CaseInsensitiveStringMap → Map
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(o: Any): Boolean
    Definition Classes
    CaseInsensitiveStringMap → Map → AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def forEach(arg0: BiConsumer[_ >: String, _ >: String]): Unit
    Definition Classes
    Map
  18. def get(key: Any): String
    Definition Classes
    CaseInsensitiveStringMap → Map
  19. def getBoolean(key: String, defaultValue: Boolean): Boolean

    Returns the boolean value to which the specified key is mapped, or defaultValue if there is no mapping for the key.

    Returns the boolean value to which the specified key is mapped, or defaultValue if there is no mapping for the key. The key match is case-insensitive.

  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def getDouble(key: String, defaultValue: Double): Double

    Returns the double value to which the specified key is mapped, or defaultValue if there is no mapping for the key.

    Returns the double value to which the specified key is mapped, or defaultValue if there is no mapping for the key. The key match is case-insensitive.

  22. def getInt(key: String, defaultValue: Int): Int

    Returns the integer value to which the specified key is mapped, or defaultValue if there is no mapping for the key.

    Returns the integer value to which the specified key is mapped, or defaultValue if there is no mapping for the key. The key match is case-insensitive.

  23. def getLong(key: String, defaultValue: Long): Long

    Returns the long value to which the specified key is mapped, or defaultValue if there is no mapping for the key.

    Returns the long value to which the specified key is mapped, or defaultValue if there is no mapping for the key. The key match is case-insensitive.

  24. def getOrDefault(arg0: Any, arg1: String): String
    Definition Classes
    Map
  25. def hashCode(): Int
    Definition Classes
    CaseInsensitiveStringMap → Map → AnyRef → Any
  26. def isEmpty(): Boolean
    Definition Classes
    CaseInsensitiveStringMap → Map
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. def keySet(): Set[String]
    Definition Classes
    CaseInsensitiveStringMap → Map
  29. def merge(arg0: String, arg1: String, arg2: BiFunction[_ >: String, _ >: String, _ <: String]): String
    Definition Classes
    Map
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. def put(key: String, value: String): String
    Definition Classes
    CaseInsensitiveStringMap → Map
  34. def putAll(m: Map[_ <: String, _ <: String]): Unit
    Definition Classes
    CaseInsensitiveStringMap → Map
  35. def putIfAbsent(arg0: String, arg1: String): String
    Definition Classes
    Map
  36. def remove(key: Any): String
    Definition Classes
    CaseInsensitiveStringMap → Map
  37. def remove(arg0: Any, arg1: Any): Boolean
    Definition Classes
    Map
  38. def replace(arg0: String, arg1: String): String
    Definition Classes
    Map
  39. def replace(arg0: String, arg1: String, arg2: String): Boolean
    Definition Classes
    Map
  40. def replaceAll(arg0: BiFunction[_ >: String, _ >: String, _ <: String]): Unit
    Definition Classes
    Map
  41. def size(): Int
    Definition Classes
    CaseInsensitiveStringMap → Map
  42. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  43. def toString(): String
    Definition Classes
    AnyRef → Any
  44. def values(): Collection[String]
    Definition Classes
    CaseInsensitiveStringMap → Map
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Map[String, String]

Inherited from AnyRef

Inherited from Any

Ungrouped