Answer

sealed class Answer

Answer cannot be instantiated directly. Choose one of the available answers below.

Inheritors

Constructors

Link copied to clipboard
protected constructor()

Types

Link copied to clipboard
data class Negative(val text: String, val emoji: String = "🔴") : Answer

Essentially "No" in many words.

Link copied to clipboard
data class Neutral(val text: String, val emoji: String = "🟡") : Answer

Essentially "Maybe" or "I don't know" in many words.

Link copied to clipboard
data class Positive(val text: String, val emoji: String = "🟢") : Answer

Essentially "Yes" in many words.

Properties

Link copied to clipboard
abstract val emoji: String

An emoji for the answer, for easier formatting.

Link copied to clipboard
abstract val text: String

The answer text

Functions

Link copied to clipboard
fun format(): String

Default formatting with emoji. You don't have to use the emoji, you can use a when statement on the answer and use custom logic.