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

com.enonic.xp.blob.NodeVersionKeys Maven / Gradle / Ivy

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

import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.Set;

import com.google.common.collect.ImmutableSet;

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

@PublicApi
public class NodeVersionKeys
    extends AbstractImmutableEntitySet
{
    private NodeVersionKeys( final ImmutableSet set )
    {
        super( set );
    }

    public static NodeVersionKeys empty()
    {
        return new NodeVersionKeys( ImmutableSet.of() );
    }

    public static NodeVersionKeys from( final NodeVersionKey... keys )
    {
        return new NodeVersionKeys( ImmutableSet.copyOf( keys ) );
    }


    public static NodeVersionKeys from( final Collection keys )
    {
        return new NodeVersionKeys( ImmutableSet.copyOf( keys ) );
    }

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

    public static class Builder
    {
        final Set keys = new LinkedHashSet<>();

        public Builder add( final NodeVersionKey key )
        {
            this.keys.add( key );
            return this;
        }

        public Builder addAll( final Collection key )
        {
            this.keys.addAll( key );
            return this;
        }

        public NodeVersionKeys build()
        {
            return new NodeVersionKeys( ImmutableSet.copyOf( this.keys ) );
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy