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

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

There is a newer version: 7.14.4
Show newest version
package com.enonic.xp.convert;

import com.enonic.xp.content.ContentPath;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy