Transform a value type into a boxed reference type.
Transform a value type into a boxed reference type.
Runtime implementation determined byscala.runtime.BoxesRunTime.boxToByte. Seesrc/library/scala/runtime/BoxesRunTime.java.
the Byte to be boxed
a java.lang.Byte offeringx as its underlying value.
The String representation of the scala.Byte companion object.
The String representation of the scala.Byte companion object.
Transform a boxed type into a value type.
Transform a boxed type into a value type. Note that this method is not typesafe: it accepts any Object, but will throw an exception if the argument is not a java.lang.Byte.
Runtime implementation determined byscala.runtime.BoxesRunTime.unboxToByte. Seesrc/library/scala/runtime/BoxesRunTime.java.
the java.lang.Byte to be unboxed.
the Byte resulting from calling byteValue() onx
ClassCastException if the argument is not a java.lang.Byte
The largest value representable as a Byte.
The smallest value representable as a Byte.