Tagged Questions

4
votes
5answers
198 views

Accepted practice for converting an Object to and from a String in Java?

What is the commonly accepted method for converting arbitrary objects to and from their String representations, assuming that the exact class of the object is known ? In other words, I need to ...
1
vote
3answers
38 views

Method receive List of more data types as parameter

I have a method and as a parameter I send List. The method looks like this: public static void setSanctionTypes(List<QueueSueDTO> items) { for (QueueSueDTO dto : items) { ...
0
votes
0answers
29 views

Data type discovery libraries in Java

I'm looking for a java library to handle data type dicovery. Basically, determining the data type of the information contained in a string. I know I could write nested if/else statements with java ...