long l = ih.asLong();
System.out.println("read long: " + l);
}
break;
case FLOAT:
FloatHolder fh = v.getFloatHolder();
float f = fh.toFloat(); // read as float
double d = fh.toDouble(); // read as double
System.out.println("read float: " + d);
break;
case STRING:
String s = v.get().asString().toString();
System.out.println("read string: " + s);