1: <?php
2:
3: namespace LaravelUi5\Core\Ui5\Enums;
4:
5: /**
6: * Available wrapping types for text controls that can be wrapped that enable you to display the text as hyphenated.
7: *
8: * @see https://sdk.openui5.org/api/sap.m.WrappingType
9: */
10: enum WrappingType: string
11: {
12: /**
13: * Hyphenation will be used to break words on syllables where possible.
14: */
15: case Hyphenated = 'Hyphenated';
16:
17: /**
18: * Normal text wrapping will be used. Words won't break based on hyphenation.
19: */
20: case Normal = 'Normal';
21: }
22: