commonMain.org.jellyfin.sdk.model.api.ScrollDirection.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jellyfin-model-jvm Show documentation
Show all versions of jellyfin-model-jvm Show documentation
Official Kotlin/Java SDK for Jellyfin. org.jellyfin.sdk:jellyfin-model-jvm
// !! WARNING
// !! DO NOT EDIT THIS FILE
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.sdk.model.api
import kotlin.String
import kotlin.requireNotNull
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
/**
* An enum representing the axis that should be scrolled.
*/
@Serializable
public enum class ScrollDirection(
public val serialName: String,
) {
@SerialName("Horizontal")
HORIZONTAL("Horizontal"),
@SerialName("Vertical")
VERTICAL("Vertical"),
;
/**
* Get the serial name of the enum member.
*/
override fun toString(): String = serialName
public companion object {
/**
* Find the enum member by the serial name or return null.
*/
public fun fromNameOrNull(serialName: String): ScrollDirection? = when (serialName) {
"Horizontal" -> HORIZONTAL
"Vertical" -> VERTICAL
else -> null
}
/**
* Find the enum member by the serial name or throw.
*/
public fun fromName(serialName: String): ScrollDirection =
requireNotNull(fromNameOrNull(serialName)) { """Unknown value $serialName""" }
}
}