com.indeed.mph.serializers.AbstractSmartLongSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mph-table Show documentation
Show all versions of mph-table Show documentation
Minimal Perfect Hash Tables
package com.indeed.mph.serializers;
import com.indeed.mph.SmartSerializer;
import java.io.IOException;
/**
* @author alexs
*/
public abstract class AbstractSmartLongSerializer extends AbstractSmartSerializer {
private static final long serialVersionUID = 7779405971299471697L;
@Override
public Long parseFromString(final String s) throws IOException {
return Long.parseLong(s);
}
}