Necesito inicializar un HashMap constante y me gustaría hacerlo en una declaración de línea. Evitando algo como esto:
hashMap.put("One", new Integer(1)); // adding value into HashMap
hashMap.put("Two", new Integer(2));
hashMap.put("Three", new Integer(3));
similar a esto en el objetivo C:
[NSDictionary dictionaryWithObjectsAndKeys:
@"w",[NSNumber numberWithInt:1],
@"K",[NSNumber numberWithInt:2],
@"e",[NSNumber numberWithInt:4],
@"z",[NSNumber numberWithInt:5],
@"l",[NSNumber numberWithInt:6],
nil]
No he encontrado ningún ejemplo que muestre cómo hacer esto después de haber visto tantos.