Uses of Class
com.sugestio.client.SugestioClient.PartitionType

Packages that use SugestioClient.PartitionType
com.sugestio.client   
com.sugestio.client.call   
 

Uses of SugestioClient.PartitionType in com.sugestio.client
 

Methods in com.sugestio.client that return SugestioClient.PartitionType
static SugestioClient.PartitionType SugestioClient.PartitionType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SugestioClient.PartitionType[] SugestioClient.PartitionType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.sugestio.client with parameters of type SugestioClient.PartitionType
 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, 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, 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, SugestioClient.PartitionType partitionType, java.lang.String partitionId)
          Gets items that are similar to the given item, limited to the given partition
 

Uses of SugestioClient.PartitionType in com.sugestio.client.call
 

Constructors in com.sugestio.client.call with parameters of type SugestioClient.PartitionType
GetRecommendationsCall(com.sun.jersey.api.client.Client jClient, SugestioConfig config, SugestioClient.ResourceType resourceType, java.lang.String userId, java.lang.String itemId, SugestioClient.PartitionType partitionType, java.lang.String partitionId)