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.
2 parents cb06050 + 7beedd8 commit 7915febCopy full SHA for 7915feb
java/src/main/java/com/kcl/ast/SchemaIndexSignature.java
@@ -14,7 +14,7 @@
14
*/
15
public class SchemaIndexSignature {
16
@JsonProperty("key_name")
17
- private String keyName;
+ private NodeRef<String> keyName;
18
19
@JsonProperty("value")
20
private NodeRef<Expr> value;
@@ -28,11 +28,11 @@ public class SchemaIndexSignature {
28
@JsonProperty("value_ty")
29
private NodeRef<Type> valueTy;
30
31
- public String getKeyName() {
+ public NodeRef<String> getKeyName() {
32
return keyName;
33
}
34
35
- public void setKeyName(String keyName) {
+ public void setKeyName(NodeRef<String> keyName) {
36
this.keyName = keyName;
37
38
0 commit comments