All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.chen0040.sparkml.recommender.UserItemRating Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.github.chen0040.sparkml.recommender;


import lombok.Getter;
import lombok.Setter;

import java.io.Serializable;


/**
 * Created by xschen on 5/6/2017.
 */
@Getter
@Setter
public class UserItemRating implements Serializable {
   private static final long serialVersionUID = 8246834031829454204L;

   private String item = "";
   private String user = "";

   private double value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy