scray.common.serialization.JavaSetSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scray-client-jdbc Show documentation
Show all versions of scray-client-jdbc Show documentation
scray java code, which can be used from java and scala
The newest version!
package scray.common.serialization;
import java.util.Set;
import java.util.HashSet;
public class JavaSetSerializer extends JavaTraversableSerializer>{
@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public Set newCollection() {
return (Set) new HashSet();
}
}