Related: A list of multiple data types?
I want to know how to store different array types (including system types) inside an array.
The above question covered ho
If you are willing to give away type safety you can use an ArrayList, which was the only way to use a list of stuff pre generics.
You can put some wrapper code around it to only accept doubles and strings.