All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.moip.response.NotificationPreferenceListResponse Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
package br.com.moip.response;

import br.com.moip.resource.NotificationPreference;

import java.util.ArrayList;

public class NotificationPreferenceListResponse extends ArrayList {

    @Override
    public String toString() {
        StringBuilder sb =  new StringBuilder("NotificationPreferenceListResponse [");

        for (int i = 0; i < this.size(); i ++) {

            if (i > 0) {
                sb.append(",");
            }
            sb.append("(").append(this.get(i)).append(")");
        }
        sb.append("]");
        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy