We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bae30ec commit 60d735cCopy full SHA for 60d735c
src/main/java/org/springframework/data/elasticsearch/annotations/FieldType.java
@@ -61,7 +61,31 @@ public enum FieldType {
61
/** since 4.2 */
62
Wildcard("wildcard"), //
63
/** @since 4.2 */
64
- Dense_Vector("dense_vector") //
+ Dense_Vector("dense_vector"), //
65
+ /**
66
+ * @since 5.2
67
+ */
68
+ Constant_Keyword("constant_keyword"), //
69
70
71
72
+ Alias("alias"), //
73
74
75
76
+ Version("version"), //
77
78
79
80
+ Murmur3("murmur3"), //
81
82
83
84
+ Match_Only_Text("match_only_text"), //
85
86
87
88
+ Annotated_Text("annotated_text") //
89
;
90
91
private final String mappedName;
0 commit comments