com.fnklabs.draenei.analytics.TfIdfResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fnklabs-draenei Show documentation
Show all versions of fnklabs-draenei Show documentation
ORM for Cassandra but with distributed cache and analytics utils from package
package com.fnklabs.draenei.analytics;
import org.jetbrains.annotations.NotNull;
class TfIdfResult extends Facet {
@NotNull
private final Object item;
public TfIdfResult(@NotNull Object item, Facet facet, double rank) {
super(facet.getType(), facet.getValue(), rank);
this.item = item;
}
@NotNull
public Object getItem() {
return item;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy