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

com.enonic.xp.project.Projects Maven / Gradle / Ivy

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

import java.util.Collection;
import java.util.Objects;
import java.util.stream.Collectors;

import com.google.common.base.MoreObjects;
import com.google.common.collect.ImmutableList;

import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.repository.Repositories;
import com.enonic.xp.support.AbstractImmutableEntityList;

@PublicApi
public final class Projects
    extends AbstractImmutableEntityList
{
    private Projects( final ImmutableList projects )
    {
        super( projects );
    }

    public static Projects empty()
    {
        return new Projects( ImmutableList.of() );
    }

    @Deprecated
    public static Projects from( Repositories repositories )
    {
        if ( repositories == null )
        {
            return null;
        }

        return create().addAll( repositories.stream().map( Project::from ).filter( Objects::nonNull ).collect( Collectors.toList() ) )
            .build();
    }

    public static Projects from( Collection projects )
    {
        return new Projects( ImmutableList.copyOf( projects ) );
    }

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

    @Override
    public String toString()
    {
        final MoreObjects.ToStringHelper s = MoreObjects.toStringHelper( this );
        for ( final Project project : this )
        {
            s.add( "project", project.toString() );
        }

        return s.toString();
    }

    public static class Builder
    {
        private final ImmutableList.Builder projects = ImmutableList.builder();

        public Builder addAll( Collection projects )
        {
            this.projects.addAll( projects );
            return this;
        }

        public Projects build()
        {
            return new Projects( projects.build() );
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy