Hmmm. More detail is needed.
Is it that you want to work with an Integer, Float, Double, etc. and are not happy with the IS String type?
If so, you can add an input or output of type Object and then specify the Java type in the properties to be whatever you need. Then you will be working directly with an Integer, Double, Float, etc.
You can also specify an input or output of type String and constrain its content type to be an Integer, etc. Then you are working with a String, but it must contain something that meets the content type qualification.
Both of the above options are in the properties for the variable.
Or do you have a string and need to convert it to something else?
In this case, you would likely want to take advantage of built-in services that might help (such as stringToBytes) or write a custom Java service that converts to the desired type (and catches the potential exceptions if the data is not valid for that type.)
#Integration-Server-and-ESB#webMethods#Flow-and-Java-services