Example usage for com.badlogic.gdx.utils ArrayMap putAll

List of usage examples for com.badlogic.gdx.utils ArrayMap putAll

Introduction

In this page you can find the example usage for com.badlogic.gdx.utils ArrayMap putAll.

Prototype

public void putAll(ArrayMap map) 

Source Link

Usage

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;
}