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

com.enonic.xp.content.ContentIds Maven / Gradle / Ivy

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

import java.util.Arrays;
import java.util.Collection;
import java.util.Set;
import java.util.stream.Collectors;

import com.google.common.collect.ImmutableSet;

import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.support.AbstractImmutableEntitySet;

@PublicApi
public final class ContentIds
    extends AbstractImmutableEntitySet
{
    private static final ContentIds EMPTY = new ContentIds( ImmutableSet.of() );

    private ContentIds( final ImmutableSet set )
    {
        super( set );
    }

    public static ContentIds empty()
    {
        return EMPTY;
    }

    public static ContentIds from( final ContentId... ids )
    {
        return fromInternal( ImmutableSet.copyOf( ids ) );
    }

    public static ContentIds from( final String... ids )
    {
        return from( Arrays.asList( ids ) );
    }

    public static ContentIds from( final Collection ids )
    {
        return fromInternal( ids.stream().map( ContentId::from ).collect( ImmutableSet.toImmutableSet() ) );
    }

    public static ContentIds from( final Iterable ids )
    {
        if ( ids instanceof ContentIds )
        {
            return (ContentIds) ids;
        }

        return fromInternal( ImmutableSet.copyOf( ids ) );
    }

    private static ContentIds fromInternal( final ImmutableSet set )
    {
        if ( set.isEmpty() )
        {
            return EMPTY;
        }
        else
        {
            return new ContentIds( set );
        }
    }

    @Deprecated
    public Set asStrings()
    {
        return this.set.stream().map( ContentId::toString ).collect( Collectors.toSet() );
    }

    public static Builder create()
    {
        return new Builder();
    }

    public static final class Builder
    {
        private final ImmutableSet.Builder contents = ImmutableSet.builder();

        public Builder add( final ContentId contentId )
        {
            this.contents.add( contentId );
            return this;
        }

        public Builder addAll( final ContentIds contentIds )
        {
            this.contents.addAll( contentIds.getSet() );
            return this;
        }

        public ContentIds build()
        {
            return fromInternal( contents.build() );
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy