mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
chore: mark enums in value type as experimental
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
dd3fa88b36
commit
f2d0f79710
1 changed files with 24 additions and 6 deletions
|
|
@ -18,17 +18,35 @@ use UnhandledMatchError;
|
|||
* @since 31.0.0
|
||||
*/
|
||||
enum ValueType: int {
|
||||
/** @since 31.0.0 */
|
||||
/**
|
||||
* @experimental 31.0.0
|
||||
* @since 31.0.0
|
||||
*/
|
||||
case MIXED = 0;
|
||||
/** @since 31.0.0 */
|
||||
/**
|
||||
* @experimental 31.0.0
|
||||
* @since 31.0.0
|
||||
*/
|
||||
case STRING = 1;
|
||||
/** @since 31.0.0 */
|
||||
/**
|
||||
* @experimental 31.0.0
|
||||
* @since 31.0.0
|
||||
*/
|
||||
case INT = 2;
|
||||
/** @since 31.0.0 */
|
||||
/**
|
||||
* @experimental 31.0.0
|
||||
* @since 31.0.0
|
||||
*/
|
||||
case FLOAT = 3;
|
||||
/** @since 31.0.0 */
|
||||
/**
|
||||
* @experimental 31.0.0
|
||||
* @since 31.0.0
|
||||
*/
|
||||
case BOOL = 4;
|
||||
/** @since 31.0.0 */
|
||||
/**
|
||||
* @experimental 31.0.0
|
||||
* @since 31.0.0
|
||||
*/
|
||||
case ARRAY = 5;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue