class HadoopAttributeStore extends BlobLayerAttributeStore

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HadoopAttributeStore
  2. BlobLayerAttributeStore
  3. AttributeStore
  4. LayerAttributeStore
  5. Serializable
  6. Serializable
  7. AttributeCaching
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HadoopAttributeStore(rootPathString: String, serConf: SerializableConfiguration)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def attributePath(layerId: LayerId, attributeName: String): Path
  6. def attributePath: Path
  7. def attributeWildcard(attributeName: String): Path
  8. def availableAttributes(layerId: LayerId): Seq[String]
    Definition Classes
    HadoopAttributeStoreAttributeStore
  9. def availableZoomLevels(layerName: String): Seq[Int]

    Return a sequence of available zoom levels for a named layer.

    Return a sequence of available zoom levels for a named layer.

    This function should be re-implemented by AttributeStore subclasses so that catalogs with large numbers of layers can be queried efficiently.

    Definition Classes
    AttributeStore
  10. def cacheLayerType(layerId: LayerId, layerType: LayerType): LayerType
    Definition Classes
    AttributeCaching
  11. def cacheRead[T](layerId: LayerId, attributeName: String)(implicit arg0: Decoder[T]): T
    Definition Classes
    AttributeCaching
  12. def cacheWrite[T](layerId: LayerId, attributeName: String, value: T)(implicit arg0: Encoder[T]): Unit
    Definition Classes
    AttributeCaching
  13. def clearCache(id: LayerId, attribute: String): Unit
    Definition Classes
    AttributeCaching
  14. def clearCache(id: LayerId): Unit
    Definition Classes
    AttributeCaching
  15. def clearCache(): Unit
    Definition Classes
    AttributeCaching
  16. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  17. lazy val conf: Configuration
    Annotations
    @transient()
  18. def copy(from: LayerId, to: LayerId, attributes: Seq[String]): Unit
    Definition Classes
    AttributeStore
  19. def copy(from: LayerId, to: LayerId): Unit
    Definition Classes
    AttributeStore
  20. def delete(layerId: LayerId, attributeName: String): Unit
    Definition Classes
    HadoopAttributeStoreAttributeStore
  21. def delete(layerId: LayerId): Unit
    Definition Classes
    HadoopAttributeStoreAttributeStore
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  24. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def fs: FileSystem
  26. lazy val fsAndPath: (FileSystem, Path)
    Annotations
    @transient()
  27. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. def isCOGLayer(id: LayerId): Boolean
    Definition Classes
    AttributeStore
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def layerExists(layerId: LayerId): Boolean
    Definition Classes
    HadoopAttributeStoreAttributeStore
  32. def layerIds: Seq[LayerId]
    Definition Classes
    HadoopAttributeStoreAttributeStore
  33. def layerType(id: LayerId): LayerType
    Definition Classes
    AttributeStore
  34. def layerWildcard(layerId: LayerId): Path
  35. def layersWithZoomLevels: Map[String, Seq[Int]]

    Return a map with layer names and the list of available zoom levels for each.

    Return a map with layer names and the list of available zoom levels for each.

    This function should be re-implemented by AttributeStore subclasses so that catalogs with large numbers of layers can be queried efficiently.

    Definition Classes
    AttributeStore
  36. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. def read[T](layerId: LayerId, attributeName: String)(implicit arg0: Decoder[T]): T
    Definition Classes
    HadoopAttributeStoreAttributeStore
  40. def readAll[T](attributeName: String)(implicit arg0: Decoder[T]): Map[LayerId, T]
    Definition Classes
    HadoopAttributeStoreAttributeStore
  41. def readCOGLayerAttributes[H, M](id: LayerId)(implicit arg0: Decoder[H], arg1: Decoder[M]): COGLayerAttributes[H, M]
  42. def readHeader[H](id: LayerId)(implicit arg0: Decoder[H]): H
  43. def readKeyIndex[K](id: LayerId)(implicit arg0: ClassTag[K]): KeyIndex[K]
  44. def readKeyIndexes[K](id: LayerId)(implicit arg0: ClassTag[K]): Map[ZoomRange, KeyIndex[K]]
  45. def readLayerAttributes[H, M, K](id: LayerId)(implicit arg0: Decoder[H], arg1: Decoder[M], arg2: ClassTag[K]): LayerAttributes[H, M, K]
  46. def readMetadata[M](id: LayerId)(implicit arg0: Decoder[M]): M
  47. def readSchema(id: LayerId): Schema
  48. def rootPath: Path
  49. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  50. def toString(): String
    Definition Classes
    AnyRef → Any
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  54. def write[T](layerId: LayerId, attributeName: String, value: T)(implicit arg0: Encoder[T]): Unit
    Definition Classes
    HadoopAttributeStoreAttributeStore
  55. def writeCOGLayerAttributes[H, M](id: LayerId, header: H, metadata: M)(implicit arg0: Encoder[H], arg1: Encoder[M]): Unit
  56. def writeLayerAttributes[H, M, K](id: LayerId, header: H, metadata: M, keyIndex: KeyIndex[K], schema: Schema)(implicit arg0: Encoder[H], arg1: Encoder[M], arg2: ClassTag[K]): Unit

Inherited from BlobLayerAttributeStore

Inherited from AttributeStore

Inherited from LayerAttributeStore

Inherited from Serializable

Inherited from Serializable

Inherited from AttributeCaching

Inherited from AnyRef

Inherited from Any

Ungrouped