メソッドを書きました
public static final List<String> FooBar{
List<String> foobarlist = new ArrayList<String>();
foobarlist.add("foo");
foobarlist.add("bar");
return foobarlist;
}
public static void man(String[] args){
List<String> foobarlist = Foobar();
String foo = foobarlist[0];<-- error here
}
このエラーが発生します
式の型は配列型である必要がありますが、リストに解決されました