So this is what i have come up with now and it reaaaally fits my actual needs.
Thx a lot for contribution and i think i will review the tips in here later if it makes sense.
for now i now have a nice ArrayList that i can cycle throug easily while building up my fantastic awesome game 
Btw. here’s the code.
I used google lib GSon. This is reaaally easy:
package mygame;
import com.google.gson.Gson;
import com.jme3.asset.AssetInfo;
import com.jme3.asset.AssetLoader;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
public class MyJSONLoader implements AssetLoader {
public Object load(AssetInfo assetInfo) throws IOException {
Gson gson = new Gson();
ArrayList<OrbitDefinition> system = new ArrayList<OrbitDefinition>();
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(assetInfo.openStream()));
JsonObject json = gson.fromJson(reader, JsonObject.class);
JsonArray objects = json.getAsJsonArray("orbitDefinition");
for(int i = 0; i < objects.size(); i++){
JsonObject object = objects.get(i).getAsJsonObject();
OrbitDefinition element = new OrbitDefinition();
element.setName(object.get("name").getAsString());
element.setRadius(object.get("radius").getAsFloat());
element.setRotation(object.get("rotation").getAsFloat());
element.setOrbitRange(object.get("orbitRange").getAsFloat());
element.setColorMap(object.get("colorMap").getAsString());
element.setSmallPic(object.get("smallPic").getAsString());
element.setVelocity(object.get("velocity").getAsFloat());
element.setMass(object.get("mass").getAsFloat());
element.setDense(object.get("dense").getAsFloat());
element.setEccentricity(object.get("eccentricity").getAsFloat());
element.setAttachedTo(object.get("attachedTo").getAsString());
system.add(element);
}
} catch (Exception e) {
e.printStackTrace();
}
return system;
}
}
and here for some review my currently fantastic json object file
{
"orbitDefinition": [
{
"name": "sun",
"radius": "696342",
"rotation": "25",
"orbitRange": "696342e4",
"distInAU": "0",
"colorMap": "0_sun.jpg",
"smallPic": "0_sun_sm.jpg",
"velocity": "0",
"mass": "1.98892e30",
"dense": "1.408",
"eccentricity": "0",
"attachedTo": "cosmos"
},{
"name": "mercury",
"radius": "2440",
"rotation": "48",
"orbitRange": "3e5",
"distInAU": "0.38709893",
"colorMap": "1_mercury.jpg",
"smallPic": "1_mercury_sm.jpg",
"velocity": "0",
"mass": "3.302e23",
"dense": "5.427",
"eccentricity": "0",
"attachedTo": "sun"
},{
"name": "venus",
"radius": "6051.8",
"rotation": "243",
"orbitRange": "6e5",
"distInAU": "0.723",
"colorMap": "2_venus.jpg",
"smallPic": "2_venus_sm.jpg",
"velocity": "0",
"mass": "4.8685e24",
"dense": "5.243",
"eccentricity": "0",
"attachedTo": "sun"
},
{
"name": "earth",
"radius": "6378.16",
"rotation": "1",
"orbitRange": "6.6e5",
"distInAU": "1",
"colorMap": "3_earth.jpg",
"smallPic": "3_earth_sm.jpg",
"velocity": "0",
"mass": "5.9736e25",
"dense": "5.515",
"eccentricity": "0",
"attachedTo": "sun"
},{
"name": "moon",
"radius": "1738",
"rotation": "27.322",
"orbitRange": "17e4",
"distInAU": "2.575e-6",
"colorMap": "3_1_moon.jpg",
"smallPic": "3_1_moon_sm.jpg",
"velocity": "0",
"mass": "7.349e22",
"dense": "3.345",
"eccentricity": "0",
"attachedTo": "earth"
},
{
"name": "mars",
"radius": "3376.2",
"rotation": "1",
"orbitRange": "4e5",
"distInAU": "1.524",
"colorMap": "4_mars.jpg",
"smallPic": "4_mars_sm.jpg",
"velocity": "0",
"mass": "6.4185e23",
"dense": "3.933",
"eccentricity": "0",
"attachedTo": "sun"
},{
"name": "jupiter",
"radius": "71500",
"rotation": "0.4083",
"orbitRange": "7e6",
"distInAU": "5.203",
"colorMap": "5_jupiter.jpg",
"smallPic": "5_jupiter_sm.jpg",
"velocity": "0",
"mass": "1.899e27",
"dense": "1.326",
"eccentricity": "0",
"attachedTo": "sun"
},{
"name": "saturn",
"radius": "60268",
"rotation": "0.44791",
"orbitRange": "6e6",
"distInAU": "9.5826",
"colorMap": "6_saturn.jpg",
"smallPic": "6_saturn_sm.jpg",
"velocity": "0",
"mass": "5.6846e26",
"dense": "0.687",
"eccentricity": "0",
"attachedTo": "sun"
},{
"name": "uranus",
"radius": "25559",
"rotation": "0.71875",
"orbitRange": "6e5",
"distInAU": "19.201",
"colorMap": "7_uranus.jpg",
"smallPic": "7_uranus_sm.jpg",
"velocity": "0",
"mass": "8.6832e25",
"dense": "1.270",
"eccentricity": "0",
"attachedTo": "sun"
},{
"name": "neptune",
"radius": "24764",
"rotation": "0.666",
"orbitRange": "6e5",
"distInAU": "30.047",
"colorMap": "8_neptune.jpg",
"smallPic": "8_neptune_sm.jpg",
"velocity": "0",
"mass": "1.0243e26",
"dense": "1.638",
"eccentricity": "0",
"attachedTo": "sun"
}]
}