/* * 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 YogaJustify(public val intValue: Int) { AUTO(0), FLEX_START(1), CENTER(2), FLEX_END(3), SPACE_BETWEEN(4), SPACE_AROUND(5), SPACE_EVENLY(6), STRETCH(7), START(8), END(9); public fun intValue(): Int = intValue public companion object { @JvmStatic public fun fromInt(value: Int): YogaJustify = when (value) { 0 -> AUTO 1 -> FLEX_START 2 -> CENTER 3 -> FLEX_END 4 -> SPACE_BETWEEN 5 -> SPACE_AROUND 6 -> SPACE_EVENLY 7 -> STRETCH 8 -> START 9 -> END else -> throw IllegalArgumentException("Unknown enum value: $value") } } }