Companion

Properties

Link copied to clipboard
const val MAX: Int

The maximum integer value of a Port.Ephemeral, 65535

Link copied to clipboard
const val MIN: Int = 1024

The minimum integer value of a Port.Ephemeral, 1024

Functions

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

Wraps the integer in the Ephemeral class.

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

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

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

Wraps the integer in the Ephemeral class.

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

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