com.coinbase.api.deserializer.ContactsLifter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coinbase-java Show documentation
Show all versions of coinbase-java Show documentation
A first-party java wrapper around the Coinbase API
The newest version!
package com.coinbase.api.deserializer;
import java.util.ArrayList;
import java.util.List;
import com.coinbase.api.entity.Contact;
import com.coinbase.api.entity.ContactNode;
import com.fasterxml.jackson.databind.util.StdConverter;
public class ContactsLifter extends StdConverter, List> {
public List convert(List nodes) {
ArrayList result = new ArrayList();
for (ContactNode node : nodes) {
result.add(node.getContact());
}
return result;
}
}