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

com.enonic.xp.convert.IntegerConverter Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.convert;

final class IntegerConverter
    extends NumberConverter
{
    IntegerConverter()
    {
        super( Integer.class );
    }

    @Override
    protected Integer fromNumber( final Number value )
    {
        return value.intValue();
    }

    @Override
    protected Integer parse( final String value )
    {
        return Integer.parseInt( value );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy