2023-04-27 03:15:14 -07:00
|
|
|
/*
|
|
|
|
* 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 YogaErrata {
|
|
|
|
NONE(0),
|
|
|
|
STRETCH_FLEX_BASIS(1),
|
2024-10-17 22:40:16 -07:00
|
|
|
ABSOLUTE_POSITION_WITHOUT_INSETS_EXCLUDES_PADDING(2),
|
2024-01-18 21:22:05 -08:00
|
|
|
ABSOLUTE_PERCENT_AGAINST_INNER_SIZE(4),
|
2023-04-27 03:15:14 -07:00
|
|
|
ALL(2147483647),
|
|
|
|
CLASSIC(2147483646);
|
|
|
|
|
|
|
|
private final int mIntValue;
|
|
|
|
|
|
|
|
YogaErrata(int intValue) {
|
|
|
|
mIntValue = intValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int intValue() {
|
|
|
|
return mIntValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static YogaErrata fromInt(int value) {
|
|
|
|
switch (value) {
|
|
|
|
case 0: return NONE;
|
|
|
|
case 1: return STRETCH_FLEX_BASIS;
|
2024-10-17 22:40:16 -07:00
|
|
|
case 2: return ABSOLUTE_POSITION_WITHOUT_INSETS_EXCLUDES_PADDING;
|
2024-01-18 21:22:05 -08:00
|
|
|
case 4: return ABSOLUTE_PERCENT_AGAINST_INNER_SIZE;
|
2023-04-27 03:15:14 -07:00
|
|
|
case 2147483647: return ALL;
|
|
|
|
case 2147483646: return CLASSIC;
|
|
|
|
default: throw new IllegalArgumentException("Unknown enum value: " + value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|