case class DataSize(bytesCompressed: Option[Long] = None, rows: Option[Long] = None, files: Option[Long] = None, logicalRows: Option[Long] = None) extends Product with Serializable
DataSize describes following attributes for data that consists of a list of input files
- bytesCompressed
total size of the data
- rows
number of rows in the data
- files
number of input files Note: Please don't add any new constructor to this class.
jackson-module-scalaalways picks up the first constructor returned byClass.getConstructorsbut the order of the constructors list is non-deterministic. (SC-13343)
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DataSize
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
DataSize(bytesCompressed: Option[Long] = None, rows: Option[Long] = None, files: Option[Long] = None, logicalRows: Option[Long] = None)
- bytesCompressed
total size of the data
- rows
number of rows in the data
- files
number of input files Note: Please don't add any new constructor to this class.
jackson-module-scalaalways picks up the first constructor returned byClass.getConstructorsbut the order of the constructors list is non-deterministic. (SC-13343)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val bytesCompressed: Option[Long]
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val files: Option[Long]
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val logicalRows: Option[Long]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val rows: Option[Long]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()