com.coinbase.api.deserializer.PaymentMethodsLifter 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.PaymentMethod;
import com.coinbase.api.entity.PaymentMethodNode;
import com.fasterxml.jackson.databind.util.StdConverter;
public class PaymentMethodsLifter extends StdConverter, List> {
public List convert(List nodes) {
ArrayList result = new ArrayList();
for (PaymentMethodNode node : nodes) {
result.add(node.getPaymentMethod());
}
return result;
}
}