|
1 | 1 | package cn.vika.client.api.model.field; |
2 | 2 |
|
3 | 3 | /** |
4 | | - * field types |
| 4 | + * the enumerations are field types' values to create field. |
5 | 5 | * |
6 | 6 | * @author tao |
7 | 7 | */ |
8 | 8 | public enum FieldTypeEnum { |
9 | 9 | /** |
10 | | - * |
| 10 | + * the request body field type's value to create vika SingleText field. |
11 | 11 | */ |
12 | 12 | SingleText("SingleText"), |
13 | 13 | /** |
14 | | - * |
| 14 | + * the request body field type's value to create vika Text field. |
15 | 15 | */ |
16 | 16 | Text("Text"), |
17 | 17 | /** |
18 | | - * |
| 18 | + * the request body field type's value to create vika SingleSelect field. |
19 | 19 | */ |
20 | 20 | SingleSelect("SingleSelect"), |
21 | 21 | /** |
22 | | - * |
| 22 | + * the request body field type's value to create vika MultiSelect field. |
23 | 23 | */ |
24 | 24 | MultiSelect("MultiSelect"), |
25 | 25 | /** |
26 | | - * |
| 26 | + * the request body field type's value to create vika Number field. |
27 | 27 | */ |
28 | 28 | Number("Number"), |
29 | 29 | /** |
30 | | - * |
| 30 | + * the request body field type's value to create vika Currency field. |
31 | 31 | */ |
32 | 32 | Currency("Currency"), |
33 | 33 | /** |
34 | | - * |
| 34 | + * the request body field type's value to create vika Percent field. |
35 | 35 | */ |
36 | 36 | Percent("Percent"), |
37 | 37 | /** |
38 | | - * |
| 38 | + * the request body field type's value to create vika DateTime field. |
39 | 39 | */ |
40 | 40 | DateTime("DateTime"), |
41 | 41 | /** |
42 | | - * |
| 42 | + * the request body field type's value to create vika Attachment field. |
43 | 43 | */ |
44 | 44 | Attachment("Attachment"), |
45 | 45 | /** |
46 | | - * |
| 46 | + * the request body field type's value to create vika Member field. |
47 | 47 | */ |
48 | 48 | Member("Member"), |
49 | 49 | /** |
50 | | - * |
| 50 | + * the request body field type's value to create vika Checkbox field. |
51 | 51 | */ |
52 | 52 | Checkbox("Checkbox"), |
53 | 53 | /** |
54 | | - * |
| 54 | + * the request body field type's value to create vika Rating field. |
55 | 55 | */ |
56 | 56 | Rating("Rating"), |
57 | 57 | /** |
58 | | - * |
| 58 | + * the request body field type's value to create vika URL field. |
59 | 59 | */ |
60 | 60 | URL("URL"), |
61 | 61 | /** |
62 | | - * |
| 62 | + * the request body field type's value to create vika Phone field. |
63 | 63 | */ |
64 | 64 | Phone("Phone"), |
65 | 65 | /** |
66 | | - * |
| 66 | + * the request body field type's value to create vika Email field. |
67 | 67 | */ |
68 | 68 | Email("Email"), |
69 | 69 | /** |
70 | | - * |
| 70 | + * the request body field type's value to create vika MagicLink field. |
71 | 71 | */ |
72 | 72 | MagicLink("MagicLink"), |
73 | 73 | /** |
74 | | - * |
| 74 | + * the request body field type's value to create vika MagicLookUp field. |
75 | 75 | */ |
76 | 76 | MagicLookUp("MagicLookUp"), |
77 | 77 | /** |
78 | | - * |
| 78 | + * the request body field type's value to create vika Formula field. |
79 | 79 | */ |
80 | 80 | Formula("Formula"), |
81 | 81 | /** |
82 | | - * |
| 82 | + * the request body field type's value to create vika AutoNumber field. |
83 | 83 | */ |
84 | 84 | AutoNumber("AutoNumber"), |
85 | 85 | /** |
86 | | - * |
| 86 | + * the request body field type's value to create vika CreatedTime field. |
87 | 87 | */ |
88 | 88 | CreatedTime("CreatedTime"), |
89 | 89 | /** |
90 | | - * |
| 90 | + * the request body field type's value of create vika LastModifiedTime field. |
91 | 91 | */ |
92 | 92 | LastModifiedTime("LastModifiedTime"), |
93 | 93 | /** |
94 | | - * |
| 94 | + * the request body field type's value to create vika CreatedBy field. |
95 | 95 | */ |
96 | 96 | CreatedBy("CreatedBy"), |
97 | 97 | /** |
98 | | - * |
| 98 | + * the request body field type's value to create vika LastModifiedBy field. |
99 | 99 | */ |
100 | 100 | LastModifiedBy("LastModifiedBy"); |
101 | 101 |
|
|
0 commit comments