パラメータの国を持つメソッドがあります。このパラメータには、国の略語のみが含まれます。メソッドでは、スイッチケースなどを使用せずに国のフルネームを出力したいが、事前定義された文字列を使用する
final String VA="Vatikan";
String country="VA";
system.out.println(country);
//Is it possible that it Prints Vatikan now?
//I know not with that code but is there a possibillity to do that.