Hello and sorry for the noobish question. I have done a lot of search about my problem but i found nothing related to my problem.
So i have something like this:
public static String something [][] =
{
{"1","100"},
{"2","1000"},
{"3","10000"}
};
public static String somethingelse [][] =
{
{"1","100"},
{"2","1000"},
{"3","10000"}
};
public static String CATEGORIES[][][] =
{
something,
somethingelse
};
How and if it is possible ofcourse can i return from the CATEGORIES[something].get(1st line) line?
I dont want to use something[0] I want to use something like this CATEGORIES.something[0] i dont know how else to explain it.
Thanks in advance!