/* * Copyright (C) 2020 Christian Pierre MOMON * * This file is part of StatoolInfos, simple service statistics tool. * * StatoolInfos is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * StatoolInfos is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with StatoolInfos. If not, see . */ package fr.devinsy.statoolinfos.core; import java.util.ArrayList; import java.util.Collections; /** * The Class Organizations. */ public class Organizations extends ArrayList { private static final long serialVersionUID = 2092235357983955170L; /** * Instantiates a new organizations. */ public Organizations() { super(); } /** * Filter by social network. * * @return the organizations */ public Organizations filterBySocialNetworks() { Organizations result; result = new Organizations(); for (Organization organization : this) { if (organization.hasSocialNetwork()) { result.add(organization); } } // return result; } /** * Filter by social network. * * @param value * the value * @return the organizations */ public Organizations filterBySocialNetwork(final SocialNetworks value) { Organizations result; result = new Organizations(); for (Organization organization : this) { if (organization.hasSocialNetwork(value)) { result.add(organization); } } // return result; } /** * Reverse. * * @return the services */ public Organizations reverse() { Organizations result; Collections.reverse(this); result = this; // return result; } /** * Sort. * * @param sorting * the sorting * @return the issues */ public Organizations sort(final OrganizationComparator.Sorting sorting) { Organizations result; sort(new OrganizationComparator(sorting)); result = this; // return result; } /** * Sort by name. * * @return the services */ public Organizations sortByName() { Organizations result; result = sort(OrganizationComparator.Sorting.NAME); // return result; } /** * Sort by reverse service count. * * @return the organizations */ public Organizations sortByReverseServiceCount() { Organizations result; result = sort(OrganizationComparator.Sorting.REVERSE_SERVICE_COUNT); // return result; } /** * Sort by service count. * * @return the organizations */ public Organizations sortByServiceCount() { Organizations result; result = sort(OrganizationComparator.Sorting.SERVICE_COUNT); // return result; } }