Hi,

I have a string containing one of the primitive data types in Cassandra,
for example

String type = "bigint";

Now I want to create a corresponding DataType object for that.

I tried :

DataType.custom(type)


but it was useless. Notice I don't want to use the following solution

DataType.bigint()



How can I do that?

Reply via email to