com.itcoon.common.jpa.converter.AbstractLongCollectionToStringConverter Maven / Gradle / Ivy
package com.itcoon.common.jpa.converter;
import java.util.Collection;
public abstract class AbstractLongCollectionToStringConverter> extends AbstractCollectionToStringConverter{
@Override
protected Long columnSplitToAttribute(String columnSplit) {
return Long.parseLong(columnSplit);
}
@Override
protected String attributeToColumnString(Long attribute) {
return String.valueOf(attribute);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy