case class MultiRowKeyValue[T](rows: Seq[Array[Byte]], sharing: Array[Byte], shard: Array[Byte], keys: Seq[T], tier: Array[Byte], id: Array[Byte], values: Seq[KeyValue]) extends RowKeyValue[T] with Product with Serializable
Multiple rows with common key values
- rows
full binary row values, incorporates the rest of the member variables (except values)
- sharing
sharing bytes, pulled out from the row key
- shard
shard bytes, pulled out from the row key
- keys
raw row key values (not including sharing, shard, tier, or id)
- tier
tier bytes, pulled out from the row key
- id
feature id bytes, pulled out from the row key
- values
key values
- Alphabetic
- By Inheritance
- MultiRowKeyValue
- Serializable
- Serializable
- Product
- Equals
- RowKeyValue
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
MultiRowKeyValue(rows: Seq[Array[Byte]], sharing: Array[Byte], shard: Array[Byte], keys: Seq[T], tier: Array[Byte], id: Array[Byte], values: Seq[KeyValue])
- rows
full binary row values, incorporates the rest of the member variables (except values)
- sharing
sharing bytes, pulled out from the row key
- shard
shard bytes, pulled out from the row key
- keys
raw row key values (not including sharing, shard, tier, or id)
- tier
tier bytes, pulled out from the row key
- id
feature id bytes, pulled out from the row key
- values
key values
Value Members
-
def
copy(values: Seq[KeyValue]): MultiRowKeyValue[T]
Copy the row keys but use new values
Copy the row keys but use new values
- values
new values
- Definition Classes
- MultiRowKeyValue → RowKeyValue
-
def
equals(other: Any): Boolean
- Definition Classes
- MultiRowKeyValue → Equals → AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- MultiRowKeyValue → AnyRef → Any
-
val
id: Array[Byte]
Feature id bytes, pulled out from the row key
Feature id bytes, pulled out from the row key
- Definition Classes
- MultiRowKeyValue → RowKeyValue
- val keys: Seq[T]
- val rows: Seq[Array[Byte]]
-
val
shard: Array[Byte]
Shard bytes, pulled out from the row key
Shard bytes, pulled out from the row key
- Definition Classes
- MultiRowKeyValue → RowKeyValue
-
val
sharing: Array[Byte]
Sharing bytes, pulled out from the row key
Sharing bytes, pulled out from the row key
- Definition Classes
- MultiRowKeyValue → RowKeyValue
- def split: Seq[SingleRowKeyValue[T]]
-
val
tier: Array[Byte]
Tier bytes, pulled out from the row key
Tier bytes, pulled out from the row key
- Definition Classes
- MultiRowKeyValue → RowKeyValue
-
def
toString(): String
- Definition Classes
- MultiRowKeyValue → AnyRef → Any
-
val
values: Seq[KeyValue]
Key values
Key values
- Definition Classes
- MultiRowKeyValue → RowKeyValue