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

com.enonic.xp.suggester.TermSuggestion Maven / Gradle / Ivy

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

public class TermSuggestion
    extends Suggestion
{
    private TermSuggestion( final Builder builder )
    {
        super( builder );
    }

    public static Builder create( final String name )
    {
        return new Builder( name );
    }

    public static class Builder
        extends Suggestion.Builder
    {
        public Builder( final String name )
        {
            super( name );
        }

        @Override
        public TermSuggestion build()
        {
            return new TermSuggestion( this );
        }

    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy