@@ -29,7 +29,7 @@ public Object coerceValue(Object input) {
2929 }
3030
3131 @ Override
32- public Object coerceLiteral (Object input ) {
32+ public Object parseLiteral (Object input ) {
3333 if (!(input instanceof IntValue )) return null ;
3434 return ((IntValue ) input ).getValue ();
3535 }
@@ -56,7 +56,7 @@ public Object coerceValue(Object input) {
5656 }
5757
5858 @ Override
59- public Object coerceLiteral (Object input ) {
59+ public Object parseLiteral (Object input ) {
6060 if (!(input instanceof StringValue )) return null ;
6161 return Long .parseLong (((StringValue ) input ).getValue ());
6262 }
@@ -80,7 +80,7 @@ public Object coerceValue(Object input) {
8080 }
8181
8282 @ Override
83- public Object coerceLiteral (Object input ) {
83+ public Object parseLiteral (Object input ) {
8484 return ((FloatValue ) input ).getValue ().floatValue ();
8585 }
8686 });
@@ -97,7 +97,7 @@ public Object coerceValue(Object input) {
9797 }
9898
9999 @ Override
100- public Object coerceLiteral (Object input ) {
100+ public Object parseLiteral (Object input ) {
101101 if (!(input instanceof StringValue )) return null ;
102102 return ((StringValue ) input ).getValue ();
103103 }
@@ -124,7 +124,7 @@ public Object coerceValue(Object input) {
124124 }
125125
126126 @ Override
127- public Object coerceLiteral (Object input ) {
127+ public Object parseLiteral (Object input ) {
128128 if (!(input instanceof BooleanValue )) return null ;
129129 return ((BooleanValue ) input ).isValue ();
130130 }
@@ -147,7 +147,7 @@ public Object coerceValue(Object input) {
147147 }
148148
149149 @ Override
150- public Object coerceLiteral (Object input ) {
150+ public Object parseLiteral (Object input ) {
151151 if (!(input instanceof StringValue )) return null ;
152152 return ((StringValue ) input ).getValue ();
153153 }
0 commit comments