| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | /** |
| 8: | * Criticality of a value or status, represented e.g. via semantic colors (https://experience.sap.com/fiori-design-web/foundation/colors/#semantic-colors) |
| 9: | */ |
| 10: | enum CriticalityType: int |
| 11: | { |
| 12: | case VeryNegative = -1; |
| 13: | case Neutral = 0; |
| 14: | case Negative = 1; |
| 15: | case Critical = 2; |
| 16: | case Positive = 3; |
| 17: | case VeryPositive = 4; |
| 18: | case Information = 5; |
| 19: | } |
| 20: |