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

com.itcoon.common.jpa.converter.AbstractIntegerCollectionToStringConverter Maven / Gradle / Ivy

There is a newer version: 1.1.2.RELEASE
Show newest version
package com.itcoon.common.jpa.converter;

import java.util.Collection;

public abstract class AbstractIntegerCollectionToStringConverter> extends AbstractCollectionToStringConverter{

    @Override
    protected Integer columnSplitToAttribute(String columnSplit) {
        return Integer.parseInt(columnSplit);
    }

    @Override
    protected String attributeToColumnString(Integer attribute) {
        return String.valueOf(attribute);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy