I have a Java array defined already e.g.
float[] values = new float[3];
I would like to do something like this further on in the code:
values = new float[] { 0.1f, 0.2f, 0.3f };