SignalError.ErrorCode

enum SignalError.ErrorCode : Enum


Summary

Enum Values

INTERNAL_ERROR

An internal error occurred.

INVALID_REQUEST

The signal request was invalid.

TIMEOUT

The signal generation request timed out.

Public functions

SignalError.ErrorCode
valueOf(value: String)

Returns the enum constant of this type with the specified name.

Array<SignalError.ErrorCode>

Returns an array containing the constants of this enum type, in the order they're declared.

Public properties

EnumEntries<SignalError.ErrorCode>

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Int

Enum Values

INTERNAL_ERROR

val SignalError.ErrorCode.INTERNAL_ERRORSignalError.ErrorCode

An internal error occurred.

INVALID_REQUEST

val SignalError.ErrorCode.INVALID_REQUESTSignalError.ErrorCode

The signal request was invalid.

TIMEOUT

val SignalError.ErrorCode.TIMEOUTSignalError.ErrorCode

The signal generation request timed out.

Public functions

valueOf

fun valueOf(value: String): SignalError.ErrorCode

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws
kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

values

fun values(): Array<SignalError.ErrorCode>

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

Public properties

entries

val entriesEnumEntries<SignalError.ErrorCode>

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

value

val valueInt