Companion

Properties

Link copied to clipboard
const val MAX: Int = 65535

The maximum integer value of a Port, 65535

Link copied to clipboard
const val MIN: Int = 0

The minimum integer value of a Port, 0

Functions

Link copied to clipboard
@JvmStatic
@JvmName(name = "get")
fun Int.toPort(): Port

Wraps the integer in the Port class.

@JvmStatic
@JvmName(name = "get")
fun String.toPort(): Port

Parses a String for a port between MIN and MAX (inclusive).

Link copied to clipboard
@JvmStatic
@JvmName(name = "getOrNull")
fun Int.toPortOrNull(): Port?

Wraps the integer in the Port class.

@JvmStatic
@JvmName(name = "getOrNull")
fun String.toPortOrNull(): Port?

Parses a String for a port between 0 and 65535 (inclusive).