1: <?php
2:
3: namespace LaravelUi5\Core\Ui5\Enums;
4:
5: /**
6: * Enum of the available deviation markers for the NumericContent control.
7: *
8: * @see https://sdk.openui5.org/api/sap.m.DeviationIndicator
9: */
10: enum DeviationIndicator: string
11: {
12:
13: /**
14: * The actual value is less than the target value.
15: */
16: case Down = 'Down';
17:
18: /**
19: * No value (change).
20: */
21: case None = 'None';
22:
23: /**
24: * The actual value is more than the target value.
25: */
26: case Up = 'Up';
27: }
28: