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

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

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

import com.enonic.xp.resource.ResourceKey;

final class ResourceKeyConverter
    implements Converter
{
    @Override
    public Class getType()
    {
        return ResourceKey.class;
    }

    @Override
    public ResourceKey convert( final Object value )
    {
        if ( value instanceof ResourceKey )
        {
            return (ResourceKey) value;
        }

        return ResourceKey.from( value.toString() );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy