c

com.here.platform.data.client.scaladsl

ReferencePartition

final case class ReferencePartition(version: Long, partition: String, layer: String, dataHandle: String, checksum: Option[String] = None, crc: Option[String] = None, dataSize: Option[Long] = None, compressedDataSize: Option[Long] = None, additionalMetadata: Option[String] = None, timestamp: Option[Long] = None, checkpoint: Option[CheckpointMark] = None) extends Partition with javadsl.ReferencePartition with ReferenceData with Product with Serializable

Linear Supertypes
Product, Equals, ReferenceData, javadsl.ReferencePartition, Partition, javadsl.Partition, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReferencePartition
  2. Product
  3. Equals
  4. ReferenceData
  5. ReferencePartition
  6. Partition
  7. Partition
  8. Serializable
  9. Serializable
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReferencePartition(version: Long, partition: String, layer: String, dataHandle: String, checksum: Option[String] = None, crc: Option[String] = None, dataSize: Option[Long] = None, compressedDataSize: Option[Long] = None, additionalMetadata: Option[String] = None, timestamp: Option[Long] = None, checkpoint: Option[CheckpointMark] = None)

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. val additionalMetadata: Option[String]

    Optional value for additional metadata

    Optional value for additional metadata

    Definition Classes
    ReferencePartitionPartition
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val checkpoint: Option[CheckpointMark]

    Optional value for the stream record kafka offset

    Optional value for the stream record kafka offset

    Definition Classes
    ReferencePartitionPartition
  7. val checksum: Option[String]

    The checksum field is optional.

    The checksum field is optional. It is only included if checksum was requested in the API call (using 'additionalFields' query parameter) and if a checksum was provided during commit of the partition. It should be set to the sha1 checksum of the data content if data comparison needs to work for this catalog. The maximum length of checksum field is 128 characters.

    Definition Classes
    ReferencePartitionPartition
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. val compressedDataSize: Option[Long]

    Optional value for the size of the compressed partition data in bytes.

    Optional value for the size of the compressed partition data in bytes. It is only included if the compressedDataSize field was requested in the API call, and if a compressedDataSize was provided during commit of the partition.

    Definition Classes
    ReferencePartitionPartition
  10. val crc: Option[String]

    The crc field is optional.

    The crc field is optional. It is only included if crc was requested in the API call (using 'additionalFields' query parameter) and if a crc was provided during commit of the partition.

    Definition Classes
    ReferencePartitionPartition
  11. val dataHandle: String
    Definition Classes
    ReferencePartition → ReferenceData
  12. val dataSize: Option[Long]

    Optional value for the size of the partition data in bytes.

    Optional value for the size of the partition data in bytes. It is only included if the dataSize field was requested in the API call, and if a dataSize was provided during commit of the partition.

    Definition Classes
    ReferencePartitionPartition
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def getCheckpoints: Optional[CheckpointMark]

    Optional value for the stream record kafka offset

    Optional value for the stream record kafka offset

    Definition Classes
    ReferencePartition → Partition
  16. def getChecksum: Optional[String]

    The checksum field is optional.

    The checksum field is optional. It is only included if checksum was requested in the API call (using 'additionalFields' query parameter) and if a checksum was provided during commit of the partition. It should be set to the sha1 checksum of the data content if data comparison needs to work for this catalog. The maximum length of checksum field is 128 characters.

    Definition Classes
    ReferencePartition → Partition
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def getCompressedDataSize: OptionalLong

    Optional value for the size of the compressed partition data in bytes.

    Optional value for the size of the compressed partition data in bytes. It is only included if the compressedDataSize field was requested in the API call, and if a compressedDataSize was provided during commit of the partition.

    Definition Classes
    ReferencePartition → Partition
  19. def getCrc: Optional[String]

    The crc field is optional.

    The crc field is optional. It is only included if crc was requested in the API call (using 'additionalFields' query parameter) and if a crc was provided during commit of the partition.

    Definition Classes
    ReferencePartition → Partition
  20. def getDataHandle: String

    Handle of partition data.

    Handle of partition data.

    Definition Classes
    ReferencePartition → ReferencePartition
  21. def getDataSize: OptionalLong

    Optional value for the size of the partition data in bytes.

    Optional value for the size of the partition data in bytes. It is only included if the dataSize field was requested in the API call, and if a dataSize was provided during commit of the partition.

    Definition Classes
    ReferencePartition → Partition
  22. def getLayer: String

    Name of the layer.

    Name of the layer. Content of this field must refer to a valid layer already configured in the catalog configuration. Allowed are only: a-z, A-Z, 0-9, '_' and '-' characters. The partition layer cannot be empty. Maximum length is 50 characters.

    Definition Classes
    ReferencePartition → Partition
  23. def getPartition: String

    Name of the partition.

    Name of the partition. If the partition is using a tiling partitioning scheme, this is the id of the tile. The name cannot be empty. Maximum length of this field is 500 characters.

    Definition Classes
    ReferencePartition → Partition
  24. def getTimestamp: OptionalLong

    Optional value for the stream or index record timestamp

    Optional value for the stream or index record timestamp

    Definition Classes
    ReferencePartition → Partition
  25. def getVersion: Long

    Version of the catalog when this partition was last changed

    Version of the catalog when this partition was last changed

    Definition Classes
    ReferencePartition → ReferencePartition
  26. def isDeleted: Boolean

    Return true if partition represent a delete modification

    Return true if partition represent a delete modification

    Definition Classes
    ReferencePartitionPartition → Partition
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. val layer: String

    Name of the layer.

    Name of the layer. Content of this field must refer to a valid layer already configured in the catalog configuration. Allowed are only: a-z, A-Z, 0-9, '_' and '-' characters. The partition layer cannot be empty. Maximum length is 50 characters.

    Definition Classes
    ReferencePartition → ReferenceData → Partition
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. val partition: String

    Name of the partition.

    Name of the partition. If the partition is using a tiling partitioning scheme, this is the id of the tile. The name cannot be empty. Maximum length of this field is 500 characters.

    Definition Classes
    ReferencePartitionPartition
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. val timestamp: Option[Long]

    Optional value for the stream or index record timestamp

    Optional value for the stream or index record timestamp

    Definition Classes
    ReferencePartitionPartition
  35. val version: Long
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Deprecated Value Members

  1. def getAdditionalMetadata: Optional[String]

    Optional value for additional metadata

    Optional value for additional metadata

    Definition Classes
    ReferencePartition → Partition
    Annotations
    @deprecated
    Deprecated

    (Since version OLP SDK > 2.1) This field is not supported anymore. Please use the other available fields instead.

Inherited from Product

Inherited from Equals

Inherited from ReferenceData

Inherited from javadsl.ReferencePartition

Inherited from Partition

Inherited from javadsl.Partition

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped