W3cubDocs

/Kotlin

Byte

class Byte : Number, Comparable<Byte>

Represents a 8-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type byte.

Functions

compareTo

operator fun compareTo(other: Byte): Int
operator fun compareTo(other: Short): Int
operator fun compareTo(other: Int): Int
operator fun compareTo(other: Long): Int
operator fun compareTo(other: Float): Int
operator fun compareTo(other: Double): Int

Compares this value with the specified value for order. Returns zero if this value is equal to the specified other value, a negative number if it's less than other, or a positive number if it's greater than other.

dec

operator fun dec(): Byte

Decrements this value.

div

operator fun div(other: Byte): Int
operator fun div(other: Short): Int
operator fun div(other: Int): Int
operator fun div(other: Long): Long
operator fun div(other: Float): Float
operator fun div(other: Double): Double

Divides this value by the other value.

inc

operator fun inc(): Byte

Increments this value.

minus

operator fun minus(other: Byte): Int
operator fun minus(other: Short): Int
operator fun minus(other: Int): Int
operator fun minus(other: Long): Long
operator fun minus(other: Float): Float
operator fun minus(other: Double): Double

Subtracts the other value from this value.

mod

operator fun mod(other: Byte): Int
operator fun mod(other: Short): Int
operator fun mod(other: Int): Int
operator fun mod(other: Long): Long
operator fun mod(other: Float): Float
operator fun mod(other: Double): Double

Calculates the remainder of dividing this value by the other value.

plus

operator fun plus(other: Byte): Int
operator fun plus(other: Short): Int
operator fun plus(other: Int): Int
operator fun plus(other: Long): Long
operator fun plus(other: Float): Float
operator fun plus(other: Double): Double

Adds the other value to this value.

rangeTo

operator fun rangeTo(other: Byte): IntRange
operator fun rangeTo(other: Short): IntRange
operator fun rangeTo(other: Int): IntRange
operator fun rangeTo(other: Long): LongRange

Creates a range from this value to the specified other value.

rem

operator fun rem(other: Byte): Int
operator fun rem(other: Short): Int
operator fun rem(other: Int): Int
operator fun rem(other: Long): Long
operator fun rem(other: Float): Float
operator fun rem(other: Double): Double

Calculates the remainder of dividing this value by the other value.

times

operator fun times(other: Byte): Int
operator fun times(other: Short): Int
operator fun times(other: Int): Int
operator fun times(other: Long): Long
operator fun times(other: Float): Float
operator fun times(other: Double): Double

Multiplies this value by the other value.

toByte

fun toByte(): Byte

Returns the value of this number as a Byte, which may involve rounding or truncation.

toChar

fun toChar(): Char

Returns the Char with the numeric value equal to this number, truncated to 16 bits if appropriate.

toDouble

fun toDouble(): Double

Returns the value of this number as a Double, which may involve rounding.

toFloat

fun toFloat(): Float

Returns the value of this number as a Float, which may involve rounding.

toInt

fun toInt(): Int

Returns the value of this number as an Int, which may involve rounding or truncation.

toLong

fun toLong(): Long

Returns the value of this number as a Long, which may involve rounding or truncation.

toShort

fun toShort(): Short

Returns the value of this number as a Short, which may involve rounding or truncation.

unaryMinus

operator fun unaryMinus(): Int

Returns the negative of this value.

unaryPlus

operator fun unaryPlus(): Int

Returns this value.

Companion Object Properties

MAX_VALUE

const val MAX_VALUE: Byte

A constant holding the maximum value an instance of Byte can have.

MIN_VALUE

const val MIN_VALUE: Byte

A constant holding the minimum value an instance of Byte can have.

Extension Functions

and

infix fun Byte.and(other: Byte): Byte

Performs a bitwise AND operation between the two values.

coerceAtLeast

fun Byte.coerceAtLeast(minimumValue: Byte): Byte

Ensures that this value is not less than the specified minimumValue.

coerceAtMost

fun Byte.coerceAtMost(maximumValue: Byte): Byte

Ensures that this value is not greater than the specified maximumValue.

coerceIn

fun Byte.coerceIn(
    minimumValue: Byte, 
    maximumValue: Byte
): Byte

Ensures that this value lies in the specified range minimumValue..maximumValue.

downTo

infix fun Byte.downTo(to: Byte): IntProgression
infix fun Byte.downTo(to: Int): IntProgression
infix fun Byte.downTo(to: Long): LongProgression
infix fun Byte.downTo(to: Short): IntProgression

Returns a progression from this value down to the specified to value with the step -1.

inv

fun Byte.inv(): Byte

Inverts the bits in this value.

or

infix fun Byte.or(other: Byte): Byte

Performs a bitwise OR operation between the two values.

toString

fun Byte.toString(radix: Int): String

Returns a string representation of this Byte value in the specified radix.

until

infix fun Byte.until(to: Byte): IntRange
infix fun Byte.until(to: Int): IntRange
infix fun Byte.until(to: Long): LongRange
infix fun Byte.until(to: Short): IntRange

Returns a range from this value up to but excluding the specified to value.

xor

infix fun Byte.xor(other: Byte): Byte

Performs a bitwise XOR operation between the two values.

© 2010–2018 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte/index.html