1: <?php
2:
3: namespace LaravelUi5\Core\Ui5\Enums;
4:
5: /**
6: * Defines the priority for the TileContent in ActionMode.
7: *
8: * @see https://sdk.openui5.org/api/sap.m.Priority
9: */
10: enum Priority: string
11: {
12:
13: /**
14: * It displays high priority color for the GenericTag
15: */
16: case High = 'High';
17:
18: /**
19: * It displays low priority color for the GenericTag
20: */
21: case Low = 'Low';
22:
23: /**
24: * It displays medium priority color for the GenericTag
25: */
26: case Medium = 'Medium';
27:
28: /**
29: * The priority is not set
30: */
31: case None = 'None';
32:
33: /**
34: * It displays very high priority color for the GenericTag
35: */
36: case VeryHigh = 'VeryHigh';
37: }
38: