Back out "Back out "[yoga][intrinsic sizing] Modify private apis to set, store, and get intrinsic sizing keywords""

Summary:
Original commit changeset: 1d596964e0c8

Original Phabricator Diff: D66332307

Differential Revision: D66662662
This commit is contained in:
Joe Vilches
2024-12-02 10:46:06 -08:00
committed by Facebook GitHub Bot
parent be72b8e8aa
commit edc236dfc8
17 changed files with 317 additions and 54 deletions

View File

@@ -13,7 +13,10 @@ public enum YogaUnit {
UNDEFINED(0),
POINT(1),
PERCENT(2),
AUTO(3);
AUTO(3),
MAX_CONTENT(4),
FIT_CONTENT(5),
STRETCH(6);
private final int mIntValue;
@@ -31,6 +34,9 @@ public enum YogaUnit {
case 1: return POINT;
case 2: return PERCENT;
case 3: return AUTO;
case 4: return MAX_CONTENT;
case 5: return FIT_CONTENT;
case 6: return STRETCH;
default: throw new IllegalArgumentException("Unknown enum value: " + value);
}
}