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

com.sportradar.unifiedodds.sdk.impl.entities.CategoryImpl Maven / Gradle / Ivy

/*
 * Copyright (C) Sportradar AG. See LICENSE for full license governing this code
 */

package com.sportradar.unifiedodds.sdk.impl.entities;

import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableList;
import com.sportradar.unifiedodds.sdk.entities.Category;
import com.sportradar.unifiedodds.sdk.entities.SportEvent;
import com.sportradar.unifiedodds.sdk.entities.Tournament;
import com.sportradar.utils.URN;

import java.util.List;
import java.util.Locale;
import java.util.Map;

/**
 * Represents a sport category
 */
public class CategoryImpl extends CategorySummaryImpl implements Category {
    /**
     * An unmodifiable {@link List} of tournaments which belong to the category represented by the current instance
     */
    private final List tournaments;


    /**
     * Initializes a new instance of the {@link CategoryImpl}
     *
     * @param id - an {@link URN} uniquely identifying the current {@link Category} instance
     * @param names - a {@link Map} containing translated category name
     * @param tournaments - a {@link List} of tournaments which belong to the current {@link Category} instance
     * @param countryCode - a {@link String} representation of a country code
     */
    public CategoryImpl(URN id, Map names, List tournaments, String countryCode) {
        super(id, names, countryCode);

        Preconditions.checkNotNull(tournaments);

        this.tournaments = ImmutableList.copyOf(tournaments);
    }


    /**
     * Returns an unmodifiable {@link List} of tournaments which belong to the category represented by the current instance
     * (possible types: {@link com.sportradar.unifiedodds.sdk.entities.BasicTournament}, {@link Tournament}, {@link com.sportradar.unifiedodds.sdk.entities.Stage})
     *
     * @return - an unmodifiable {@link List} of tournaments which belong to the category represented by the current instance
     */
    @Override
    public List getTournaments() {
        return tournaments;
    }

    /**
     * Returns a {@link String} describing the current {@link Category} instance
     *
     * @return - a {@link String} describing the current {@link Category} instance
     */
    @Override
    public String toString() {
        return "CategoryImpl{" +
                "tournaments=" + tournaments +
                "} " + super.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy