SignalError.ErrorCode

public enum SignalError.ErrorCode extends 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 methods

final @NonNull EnumEntries<@NonNull SignalError.ErrorCode>

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

final int
final @NonNull SignalError.ErrorCode

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

final @NonNull SignalError.ErrorCode[]

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

Enum Values

INTERNAL_ERROR

SignalError.ErrorCode SignalError.ErrorCode.INTERNAL_ERROR

An internal error occurred.

INVALID_REQUEST

SignalError.ErrorCode SignalError.ErrorCode.INVALID_REQUEST

The signal request was invalid.

TIMEOUT

SignalError.ErrorCode SignalError.ErrorCode.TIMEOUT

The signal generation request timed out.

Public methods

getEntries

public final @NonNull EnumEntries<@NonNull SignalError.ErrorCodegetEntries()

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.

getValue

public final int getValue()

valueOf

public final @NonNull SignalError.ErrorCode valueOf(@NonNull String value)

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

public final @NonNull SignalError.ErrorCode[] values()

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.