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:
Java does not provide a construct that will assign of multiple values to an existing array's elements. The initializer syntaxes can ONLY be used when creation a new array object. This can be at the point of declaration, or later on. But either way, the initializer is initializing a new array object, not updating an existing one.