I am trying to migrate my Objective C code into Java to learn this programming language.
I would like to "convert" the following ObjectiveC structure into Java, but I couldn't find the equivalent Java structure:
g_vo2MaxFemales = @[
@{
@"fromAge": @(13),
@"tillAge": @(19),
@"beginner": @(29.95),
@"regular": @(36.95),
@"pro": @(40.5)
},
@{
@"fromAge": @(20),
@"tillAge": @(29),
@"beginner": @(28.25),
@"regular": @(35),
@"pro": @(39)
}
...
];
Which is the similar Java "object"?