File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
driver/src/main/java/org/neo4j/driver/v1 Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,17 @@ public static Value value( boolean... input )
141
141
}
142
142
return new ListValue ( values );
143
143
}
144
+
145
+ public static Value value ( char ... input )
146
+ {
147
+ Value [] values = new Value [input .length ];
148
+ for ( int i = 0 ; i < input .length ; i ++ )
149
+ {
150
+ values [i ] = value ( input [i ] );
151
+ }
152
+ return new ListValue ( values );
153
+ }
154
+
144
155
public static Value value ( long ... input )
145
156
{
146
157
Value [] values = new Value [input .length ];
@@ -207,7 +218,7 @@ public static Value value( Iterator<Object> val )
207
218
return new ListValue ( values .toArray ( new Value [values .size ()] ) );
208
219
}
209
220
210
- public static Value value (final char val ) { return new StringValue ( String .valueOf (val ) ); }
221
+ public static Value value (final char val ) { return new StringValue ( String .valueOf ( val ) ); }
211
222
212
223
public static Value value ( final String val )
213
224
{
You can’t perform that action at this time.
0 commit comments