net.dv8tion.jda.api.utils.cache.UnifiedMemberCacheView Maven / Gradle / Ivy
Show all versions of JDA Show documentation
/*
* Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and the JDA contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.dv8tion.jda.api.utils.cache;
import net.dv8tion.jda.api.entities.Member;
import net.dv8tion.jda.api.entities.Role;
import net.dv8tion.jda.api.utils.MiscUtil;
import org.jetbrains.annotations.Unmodifiable;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.Collection;
import java.util.List;
/**
* {@link net.dv8tion.jda.api.utils.cache.CacheView CacheView} implementation
* specifically to combine {@link net.dv8tion.jda.api.entities.Member Member} cache views.
*
* This is done because Members do not implement {@link net.dv8tion.jda.api.entities.ISnowflake ISnowflake} as
* they are not globally unique but only unique per {@link net.dv8tion.jda.api.entities.Guild Guild}!
*
* @see CacheView CacheView for details on Efficient Memory Usage
*/
public interface UnifiedMemberCacheView extends CacheView
{
/**
* Retrieves all member represented by the provided ID.
*
* @param id
* The ID of the members
*
* @return Possibly-empty unmodifiable list of member for the specified ID
*/
@Nonnull
List getElementsById(long id);
/**
* Retrieves all member represented by the provided ID.
*
* @param id
* The ID of the members
*
* @throws java.lang.NumberFormatException
* If the provided String is {@code null} or
* cannot be resolved to an unsigned long id
*
* @return Possibly-empty unmodifiable list of member for the specified ID
*/
@Nonnull
default List getElementsById(@Nonnull String id)
{
return getElementsById(MiscUtil.parseSnowflake(id));
}
/**
* Creates an immutable list of all members matching the given username.
*
This will check the name of the wrapped user.
*
* @param name
* The name to check
* @param ignoreCase
* Whether to ignore case when comparing usernames
*
* @throws java.lang.IllegalArgumentException
* If the provided name is {@code null}
*
* @return Immutable list of members with the given username
*/
@Nonnull
@Unmodifiable
List getElementsByUsername(@Nonnull String name, boolean ignoreCase);
/**
* Creates an immutable list of all members matching the given username.
*
This will check the name of the wrapped user.
*
* @param name
* The name to check
*
* @throws java.lang.IllegalArgumentException
* If the provided name is {@code null}
*
* @return Immutable list of members with the given username
*/
@Nonnull
@Unmodifiable
default List getElementsByUsername(@Nonnull String name)
{
return getElementsByUsername(name, false);
}
/**
* Creates an immutable list of all members matching the given nickname.
*
This will check the nickname of the member.
* If provided with {@code null} this will check for members
* that have no nickname set.
*
* @param name
* The nullable nickname to check
* @param ignoreCase
* Whether to ignore case when comparing nicknames
*
* @return Immutable list of members with the given nickname
*/
@Nonnull
@Unmodifiable
List getElementsByNickname(@Nullable String name, boolean ignoreCase);
/**
* Creates an immutable list of all members matching the given nickname.
*
This will check the nickname of the member.
* If provided with {@code null} this will check for members
* that have no nickname set.
*
* @param name
* The nullable nickname to check
*
* @return Immutable list of members with the given nickname
*/
@Nonnull
@Unmodifiable
default List getElementsByNickname(@Nullable String name)
{
return getElementsByNickname(name, false);
}
/**
* Creates an immutable list of all members that hold all
* of the provided roles.
*
* @param roles
* Roles the members should have
*
* @throws java.lang.IllegalArgumentException
* If provided with {@code null}
*
* @return Immutable list of members with the given roles
*/
@Nonnull
@Unmodifiable
List getElementsWithRoles(@Nonnull Role... roles);
/**
* Creates an immutable list of all members that hold all
* of the provided roles.
*
* @param roles
* Roles the members should have
*
* @throws java.lang.IllegalArgumentException
* If provided with {@code null}
*
* @return Immutable list of members with the given roles
*/
@Nonnull
@Unmodifiable
List getElementsWithRoles(@Nonnull Collection roles);
}