|
17 | 17 | public interface SearchFieldType extends JsonEnum {
|
18 | 18 |
|
19 | 19 | /**
|
20 |
| - <p>For Boolean fields and AttributeBooleanType Attributes.</p> */ |
| 20 | + <p>For Boolean fields, AttributeBooleanType Attributes, and BooleanType Custom Fields.</p> */ |
21 | 21 | SearchFieldType BOOLEAN = SearchFieldTypeEnum.BOOLEAN;
|
22 | 22 | /**
|
23 |
| - <p>For string fields and AttributeTextType Attributes.</p> */ |
| 23 | + <p>For string fields, AttributeTextType Attributes, and StringType Custom Fields.</p> */ |
24 | 24 | SearchFieldType TEXT = SearchFieldTypeEnum.TEXT;
|
25 | 25 | /**
|
26 |
| - <p>For LocalizedString fields and AttributeLocalizableTextType Attributes.</p> */ |
| 26 | + <p>For LocalizedString fields, AttributeLocalizableTextType Attributes, and LocalizedStringType Custom Fields.</p> */ |
27 | 27 | SearchFieldType LTEXT = SearchFieldTypeEnum.LTEXT;
|
28 | 28 | /**
|
29 |
| - <p>For enum fields and AttributeEnumType Attributes.</p> */ |
| 29 | + <p>For enum fields, AttributeEnumType Attributes, and EnumType Custom Fields.</p> */ |
30 | 30 | SearchFieldType ENUM = SearchFieldTypeEnum.ENUM;
|
31 | 31 | /**
|
32 |
| - <p>For localized enum fields and AttributeLocalizedEnumType Attributes.</p> */ |
| 32 | + <p>For localized enum fields, AttributeLocalizedEnumType Attributes, and LocalizedEnumType Custom Fields.</p> */ |
33 | 33 | SearchFieldType LENUM = SearchFieldTypeEnum.LENUM;
|
34 | 34 | /**
|
35 |
| - <p>For number fields and AttributeNumberType Attributes.</p> */ |
| 35 | + <p>For number fields, AttributeNumberType Attributes, and NumberType Custom Fields.</p> */ |
36 | 36 | SearchFieldType NUMBER = SearchFieldTypeEnum.NUMBER;
|
37 | 37 | /**
|
38 | 38 | <p>For Money fields and AttributeMoneyType Attributes.</p> */
|
39 | 39 | SearchFieldType MONEY = SearchFieldTypeEnum.MONEY;
|
40 | 40 | /**
|
41 |
| - <p>For Date fields and AttributeDateType Attributes.</p> */ |
| 41 | + <p>For Date fields, AttributeDateType Attributes, and DateType Custom Fields.</p> */ |
42 | 42 | SearchFieldType DATE = SearchFieldTypeEnum.DATE;
|
43 | 43 | /**
|
44 |
| - <p>For DateTime fields and AttributeDateTimeType Attributes.</p> */ |
| 44 | + <p>For DateTime fields, AttributeDateTimeType Attributes, and DateTimeType Custom Fields.</p> */ |
45 | 45 | SearchFieldType DATETIME = SearchFieldTypeEnum.DATETIME;
|
46 | 46 | /**
|
47 |
| - <p>For Time fields and AttributeTimeType Attributes.</p> */ |
| 47 | + <p>For Time fields, AttributeTimeType Attributes, and TimeType Custom Fields.</p> */ |
48 | 48 | SearchFieldType TIME = SearchFieldTypeEnum.TIME;
|
49 | 49 | /**
|
50 | 50 | <p>For Reference fields and AttributeReferenceType Attributes.</p> */
|
51 | 51 | SearchFieldType REFERENCE = SearchFieldTypeEnum.REFERENCE;
|
52 | 52 | /**
|
53 |
| - <p>For Set of Boolean fields and AttributeSetType of <code>boolean</code> Attributes.</p> */ |
| 53 | + <p>For Set of Boolean fields, AttributeSetType of <code>boolean</code> Attributes, and SetType of <code>boolean</code> Custom Fields.</p> */ |
54 | 54 | SearchFieldType SET_BOOLEAN = SearchFieldTypeEnum.SET_BOOLEAN;
|
55 | 55 | /**
|
56 |
| - <p>For Set of string fields and AttributeSetType of <code>text</code> Attributes.</p> */ |
| 56 | + <p>For Set of string fields, AttributeSetType of <code>text</code> Attributes, and SetType of <code>text</code> Custom Fields.</p> */ |
57 | 57 | SearchFieldType SET_TEXT = SearchFieldTypeEnum.SET_TEXT;
|
58 | 58 | /**
|
59 |
| - <p>For Set of LocalizedString fields and AttributeSetType of <code>ltext</code> Attributes.</p> */ |
| 59 | + <p>For Set of LocalizedString fields, AttributeSetType of <code>ltext</code> Attributes, and SetType of <code>ltext</code> Custom Fields.</p> */ |
60 | 60 | SearchFieldType SET_LTEXT = SearchFieldTypeEnum.SET_LTEXT;
|
61 | 61 | /**
|
62 |
| - <p>For Set of enum fields and AttributeSetType of <code>enum</code> Attributes.</p> */ |
| 62 | + <p>For Set of enum fields, AttributeSetType of <code>enum</code> Attributes, and SetType of <code>enum</code> Custom Fields.</p> */ |
63 | 63 | SearchFieldType SET_ENUM = SearchFieldTypeEnum.SET_ENUM;
|
64 | 64 | /**
|
65 |
| - <p>For Set of localized enum fields and AttributeSetType of <code>lenum</code> Attributes.</p> */ |
| 65 | + <p>For Set of localized enum fields, AttributeSetType of <code>lenum</code> Attributes, and SetType of <code>lenum</code> Custom Fields.</p> */ |
66 | 66 | SearchFieldType SET_LENUM = SearchFieldTypeEnum.SET_LENUM;
|
67 | 67 | /**
|
68 |
| - <p>For Set of number fields and AttributeSetType of <code>number</code> Attributes.</p> */ |
| 68 | + <p>For Set of number fields, AttributeSetType of <code>number</code> Attributes, and SetType of <code>number</code> Custom Fields.</p> */ |
69 | 69 | SearchFieldType SET_NUMBER = SearchFieldTypeEnum.SET_NUMBER;
|
70 | 70 | /**
|
71 | 71 | <p>For Set of Money fields and AttributeSetType of <code>money</code> Attributes.</p> */
|
72 | 72 | SearchFieldType SET_MONEY = SearchFieldTypeEnum.SET_MONEY;
|
73 | 73 | /**
|
74 |
| - <p>For Set of Date fields and AttributeSetType of <code>date</code> Attributes.</p> */ |
| 74 | + <p>For Set of Date fields, AttributeSetType of <code>date</code> Attributes, and SetType of <code>date</code> Custom Fields.</p> */ |
75 | 75 | SearchFieldType SET_DATE = SearchFieldTypeEnum.SET_DATE;
|
76 | 76 | /**
|
77 |
| - <p>For Set of DateTime fields and AttributeSetType of <code>datetime</code> Attributes.</p> */ |
| 77 | + <p>For Set of DateTime fields, AttributeSetType of <code>datetime</code> Attributes, and SetType of <code>datetime</code> Custom Fields.</p> */ |
78 | 78 | SearchFieldType SET_DATETIME = SearchFieldTypeEnum.SET_DATETIME;
|
79 | 79 | /**
|
80 |
| - <p>For Set of Time fields and AttributeSetType of <code>time</code> Attributes.</p> */ |
| 80 | + <p>For Set of Time fields, AttributeSetType of <code>time</code> Attributes, and SetType of <code>time</code> Custom Fields.</p> */ |
81 | 81 | SearchFieldType SET_TIME = SearchFieldTypeEnum.SET_TIME;
|
82 | 82 | /**
|
83 | 83 | <p>For Set of Reference fields and AttributeSetType of <code>reference</code> Attributes.</p> */
|
|
0 commit comments