/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py package com.facebook.yoga public enum class YogaFlexDirection(public val intValue: Int) { COLUMN(0), COLUMN_REVERSE(1), ROW(2), ROW_REVERSE(3); public fun intValue(): Int = intValue public companion object { @JvmStatic public fun fromInt(value: Int): YogaFlexDirection = when (value) { 0 -> COLUMN 1 -> COLUMN_REVERSE 2 -> ROW 3 -> ROW_REVERSE else -> throw IllegalArgumentException("Unknown enum value: $value") } } }