See also the Customer response object.
If you want to look up a single customer using its ID, use the find method.
Java
Customer customer = gateway.customer().find("the_customer_id");
If the customer can't be found, it will throw a NotFoundException
.