List of usage examples for com.badlogic.gdx.utils ArrayMap putAll
public void putAll(ArrayMap map)
From source file:de.tomgrill.gdxfacebook.core.AbstractRequest.java
License:Apache License
/** * Add multiple fields to the request./* ww w. ja va 2 s . c om*/ * * @param fields * @return this */ public AbstractRequest putFields(ArrayMap<String, String> fields) { fields.putAll(fields); return this; }