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

monniasza.collects.selfset.SelfSet Maven / Gradle / Ivy

Go to download

Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world. THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<

The newest version!
/**
 * 
 */
package monniasza.collects.selfset;

import java.util.Set;

import mmb.NN;
import mmb.Nil;

/**
 * @author oskar
 * A SelfSet is a set, which uses object's identifiers to locate given object within a set
 * @param  the key type
 * @param  the value type
 */
public interface SelfSet extends Set{
	/**
	 * @return keys contained in the self-set
	 */
	@NN public Set keys();
	
	/**
	 * @return values contained in the self-set
	 */
	@NN public Set values();
	
	/**
	 * Get the value under a given key
	 * @param key key
	 * @return value under the key, or null if absent
	 */
	@Nil public V get(@Nil Object key);
	/**
	 * Get the value under a given key
	 * @param key key
	 * @param defalt default value
	 * @return value under the key, or default if absent
	 */
	public V getOrDefault(@Nil Object key, V defalt);
	
	/**
	 * Remove given key from the self-set
	 * @param key
	 * @return did the self-set change?
	 */
	public boolean removeKey(K key);
	
	public boolean containsKey(@Nil Object key);

	@SuppressWarnings({"unchecked"})
	@Override
	/**
	 * Checks if given self-set contains given key
	 * The input must be of type , because it is casted to {@link Identifiable} internally
	 */
	default boolean contains(@Nil Object arg0) {
		if(arg0 == null) return containsKey(null);
		return test(arg0) && containsKey(id((V)arg0));
	}

	@SuppressWarnings("unchecked")
	@Override
	/**
	 * Removes given value from the self-set.
	 * The input must be of type , because it is casted to {@link Identifiable} internally
	 */
	default boolean remove(@Nil Object arg0) {
		return test(arg0) && removeKey(id((V)arg0));
	}
	
	/**
	 * Checks if the object is supported
	 * @param o
	 * @return is the provided object a supported value
	 */
	public boolean test(@Nil Object o);
	/**
	 * @param value
	 * @return identifier for purposes of this self-set
	 */
	public K id(@Nil Object value);
	/**
	 * @return is this self-set nullable?
	 */
	public boolean nullable();
	/**
	 * @return the type of this self-set, or null if unrestricted
	 */
	@Nil public Class type();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy