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

scray.common.serialization.JavaSetSerializer Maven / Gradle / Ivy

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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy