toPortOrNull

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

Wraps the integer in the Port class.

If the value is within Ephemeral.MIN and Ephemeral.MAX, then Ephemeral is always returned.

Return

Port or null if not within MIN and MAX (inclusive)


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

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

String can be either a URL containing the port, or the port string itself.

If the value is within Ephemeral.MIN and Ephemeral.MAX, then Ephemeral is always returned.

Return

Port or null if no port is found.