Uses of Class
com.sugestio.client.model.Recommendation

Packages that use Recommendation
com.sugestio.client   
com.sugestio.client.call   
com.sugestio.client.model   
com.sugestio.client.response   
 

Uses of Recommendation in com.sugestio.client
 

Methods in com.sugestio.client that return types with arguments of type Recommendation
 java.util.Map<java.lang.String,SugestioResult<java.util.List<Recommendation>>> SugestioClient.getRecommendations(java.util.List<java.lang.String> userIds)
          Gets recommendations for the given userIds
 java.util.Map<java.lang.String,SugestioResult<java.util.List<Recommendation>>> SugestioClient.getRecommendations(java.util.List<java.lang.String> userIds, SugestioClient.PartitionType partitionType, java.lang.String partitionId)
          Gets recommendations for the given userIds, limited to the given partition
 java.util.List<Recommendation> SugestioClient.getRecommendations(java.lang.String userId)
          Gets recommendations for the given userId
 java.util.List<Recommendation> SugestioClient.getRecommendations(java.lang.String userId, RecommendationFilter filter)
          Gets recommendations for the given userId
 java.util.List<Recommendation> SugestioClient.getRecommendations(java.lang.String userId, SugestioClient.PartitionType partitionType, java.lang.String partitionId)
          Gets recommendations for the given userId, limited to the given partition
 java.util.Map<java.lang.String,SugestioResult<java.util.List<Recommendation>>> SugestioClient.getSimilar(java.util.List<java.lang.String> itemIds)
          Gets similar items for the given itemIds
 java.util.Map<java.lang.String,SugestioResult<java.util.List<Recommendation>>> SugestioClient.getSimilar(java.util.List<java.lang.String> itemIds, SugestioClient.PartitionType partitionType, java.lang.String partitionId)
          Gets similar items for the given itemIds, limited to the given partition
 java.util.List<Recommendation> SugestioClient.getSimilar(java.lang.String itemId)
          Gets items that are similar to the given item
 java.util.List<Recommendation> SugestioClient.getSimilar(java.lang.String itemId, RecommendationFilter filter)
          Gets items that are similar to the given item
 java.util.List<Recommendation> SugestioClient.getSimilar(java.lang.String itemId, SugestioClient.PartitionType partitionType, java.lang.String partitionId)
          Gets items that are similar to the given item, limited to the given partition
 

Uses of Recommendation in com.sugestio.client.call
 

Methods in com.sugestio.client.call that return types with arguments of type Recommendation
 SugestioResult<java.util.List<Recommendation>> GetRecommendationsCall.call()
           
 

Uses of Recommendation in com.sugestio.client.model
 

Methods in com.sugestio.client.model with parameters of type Recommendation
 int Recommendation.compareTo(Recommendation o)
           
 

Uses of Recommendation in com.sugestio.client.response
 

Methods in com.sugestio.client.response that return types with arguments of type Recommendation
 java.util.List<Recommendation> GetRecommendationsResponse.getList()
           
 

Methods in com.sugestio.client.response with parameters of type Recommendation
 void GetRecommendationsResponse.add(Recommendation r)