Class UnmodifiableFloatFloatMap

    • Constructor Detail

    • Method Detail

      • put

        public void put​(float key,
                        float value)
        Description copied from interface: MutableFloatFloatMap
        Associates a value with the specified key. If a value is already associated with the key in this map, it will be replaced with value.
        Specified by:
        put in interface MutableFloatFloatMap
        Parameters:
        key - the key
        value - the value to associate with value
      • putAll

        public void putAll​(FloatFloatMap map)
        Description copied from interface: MutableFloatFloatMap
        Puts all of the key/value mappings from the specified map into this map. If this map already has a value associated with one of the keys in the map, it will be replaced with the value in map.
        Specified by:
        putAll in interface MutableFloatFloatMap
        Parameters:
        map - the map to copy into this map
      • removeKeyIfAbsent

        public float removeKeyIfAbsent​(float key,
                                       float value)
        Description copied from interface: MutableFloatFloatMap
        Removes the mapping associated with the key, if one exists, from the map, returning the previously associated value with the key. If no mapping existed for the key, the specified default value is returned.
        Specified by:
        removeKeyIfAbsent in interface MutableFloatFloatMap
        Parameters:
        key - the key to remove
        value - the default value to return if no mapping for the key exists
        Returns:
        the value previously associated with the key, if one existed, or value if not
      • getIfAbsentPut

        public float getIfAbsentPut​(float key,
                                    float value)
        Description copied from interface: MutableFloatFloatMap
        Retrieves the value associated with the key if one exists; if it does not, associates a value with the key.
        Specified by:
        getIfAbsentPut in interface MutableFloatFloatMap
        Parameters:
        key - the key
        value - the value to associate with key if no such mapping exists
        Returns:
        the value associated with key, if one exists, or value if not
      • getAndPut

        public float getAndPut​(float key,
                               float putValue,
                               float defaultValue)
        Description copied from interface: MutableFloatFloatMap
        Retrieves the value associated with the key if one exists; associates a putValue with the key.
        Specified by:
        getAndPut in interface MutableFloatFloatMap
        Parameters:
        key - the key
        putValue - the value to associate with key if no such mapping exists
        defaultValue - the value to return if no mapping associated with key exists
        Returns:
        the value associated with key, if one exists, or defaultValue if not
      • getIfAbsentPut

        public float getIfAbsentPut​(float key,
                                    FloatFunction0 function)
        Description copied from interface: MutableFloatFloatMap
        Retrieves the value associated with the key if one exists; if it does not, invokes the supplier and associates the result with the key.
        Specified by:
        getIfAbsentPut in interface MutableFloatFloatMap
        Parameters:
        key - the key
        function - the supplier that provides the value if no mapping exists for key
        Returns:
        the value associated with the key, if one exists, or the result of invoking function if not
      • getIfAbsentPutWithKey

        public float getIfAbsentPutWithKey​(float key,
                                           FloatToFloatFunction function)
        Description copied from interface: MutableFloatFloatMap
        Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key.
        Specified by:
        getIfAbsentPutWithKey in interface MutableFloatFloatMap
        Parameters:
        key - the key
        function - the function that provides the value if no mapping exists. The key will be passed as the argument to the function.
        Returns:
        the value associated with the key, if one exists, or the result of invoking function with key if not
      • getIfAbsentPutWith

        public <P> float getIfAbsentPutWith​(float key,
                                            FloatFunction<? super P> function,
                                            P parameter)
        Description copied from interface: MutableFloatFloatMap
        Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.
        Specified by:
        getIfAbsentPutWith in interface MutableFloatFloatMap
        Type Parameters:
        P - the type of the value function's parameter
        Parameters:
        key - the key
        function - the function that provides the value if no mapping exists. The specified parameter will be passed as the argument to the function.
        parameter - the parameter to provide to function if no value exists for key
        Returns:
        the value associated with the key, if one exists, or the result of invoking function with parameter if not
      • updateValue

        public float updateValue​(float key,
                                 float initialValueIfAbsent,
                                 FloatToFloatFunction function)
        Description copied from interface: MutableFloatFloatMap
        Updates or sets the value associated with the key by applying the function to the existing value, if one exists, or to the specified initial value if one does not.
        Specified by:
        updateValue in interface MutableFloatFloatMap
        Parameters:
        key - the key
        initialValueIfAbsent - the initial value to supply to the function if no mapping exists for the key
        function - the function that returns the updated value based on the current value or the initial value, if no value exists
        Returns:
        the new value associated with the key, either as a result of applying function to the value already associated with the key or as a result of applying it to initialValueIfAbsent and associating the result with key
      • get

        public float get​(float key)
        Description copied from interface: FloatFloatMap
        Retrieves the value associated with the key. If no mapping exists for the key, the default value (usually 0) is returned.
        Specified by:
        get in interface FloatFloatMap
        Parameters:
        key - the key
        Returns:
        the value associated with the key, or the default value if no such mapping exists
      • getIfAbsent

        public float getIfAbsent​(float key,
                                 float ifAbsent)
        Description copied from interface: FloatFloatMap
        Retrieves the value associated with the key, returning the specified default value if no such mapping exists.
        Specified by:
        getIfAbsent in interface FloatFloatMap
        Parameters:
        key - the key
        ifAbsent - the default value to return if no mapping exists for key
        Returns:
        the value associated with the key, or ifAbsent if no such mapping exists.
      • getOrThrow

        public float getOrThrow​(float key)
        Description copied from interface: FloatFloatMap
        Retrieves the value associated with the key, throwing an IllegalStateException if no such mapping exists.
        Specified by:
        getOrThrow in interface FloatFloatMap
        Parameters:
        key - the key
        Returns:
        the value associated with the key
      • containsKey

        public boolean containsKey​(float key)
        Description copied from interface: FloatFloatMap
        Returns whether or not the key is present in the map.
        Specified by:
        containsKey in interface FloatFloatMap
        Parameters:
        key - the key
        Returns:
        if a mapping exists in this map for the key
      • containsValue

        public boolean containsValue​(float value)
        Description copied from interface: FloatValuesMap
        Returns whether or not this map contains the value.
        Specified by:
        containsValue in interface FloatValuesMap
        Parameters:
        value - the value to test
        Returns:
        if this collection contains the value
      • forEachValue

        public void forEachValue​(FloatProcedure procedure)
        Description copied from interface: FloatValuesMap
        Iterates through each value in this map.
        Specified by:
        forEachValue in interface FloatValuesMap
        Parameters:
        procedure - the procedure to invoke for each value in this map.
      • forEachKey

        public void forEachKey​(FloatProcedure procedure)
        Description copied from interface: FloatFloatMap
        Iterates through each key in the map, invoking the procedure for each.
        Specified by:
        forEachKey in interface FloatFloatMap
        Parameters:
        procedure - the procedure to invoke for each key
      • forEachKeyValue

        public void forEachKeyValue​(FloatFloatProcedure procedure)
        Description copied from interface: FloatFloatMap
        Iterates through each key/value pair in the map, invoking the procedure for each.
        Specified by:
        forEachKeyValue in interface FloatFloatMap
        Parameters:
        procedure - the procedure to invoke for each key/value pair
      • keysView

        public LazyFloatIterable keysView()
        Description copied from interface: FloatFloatMap
        Returns a view of the keys in this map. This iterable is backed by the map, so any modifications to the underlying map will be reflected in the keys returned by the iterable.
        Specified by:
        keysView in interface FloatFloatMap
        Returns:
        a view of the keys in this map
      • keyValuesView

        public RichIterable<FloatFloatPair> keyValuesView()
        Description copied from interface: FloatFloatMap
        Returns a view of the key/value pairs in this map. This iterable is backed by the map, so any modifications to the underlying map will be reflected in the pairs returned by the iterable.
        Specified by:
        keyValuesView in interface FloatFloatMap
        Returns:
        a view of the keys in this map
      • select

        public MutableFloatFloatMap select​(FloatFloatPredicate predicate)
        Description copied from interface: FloatFloatMap
        Return a copy of this map containing only the key/value pairs that match the predicate.
        Specified by:
        select in interface FloatFloatMap
        Specified by:
        select in interface MutableFloatFloatMap
        Parameters:
        predicate - the predicate to determine which key/value pairs in this map should be included in the returned map
        Returns:
        a copy of this map with the matching key/value pairs
      • reject

        public MutableFloatFloatMap reject​(FloatFloatPredicate predicate)
        Description copied from interface: FloatFloatMap
        Return a copy of this map containing only the key/value pairs that do not match the predicate.
        Specified by:
        reject in interface FloatFloatMap
        Specified by:
        reject in interface MutableFloatFloatMap
        Parameters:
        predicate - the predicate to determine which key/value pairs in this map should be excluded from the returned map
        Returns:
        a copy of this map without the matching key/value pairs
      • count

        public int count​(FloatPredicate predicate)
        Description copied from interface: FloatIterable
        Returns a count of the number of elements in the FloatIterable that return true for the specified predicate.
        Specified by:
        count in interface FloatIterable
      • anySatisfy

        public boolean anySatisfy​(FloatPredicate predicate)
        Description copied from interface: FloatIterable
        Returns true if any of the elements in the FloatIterable return true for the specified predicate, otherwise returns false.
        Specified by:
        anySatisfy in interface FloatIterable
      • allSatisfy

        public boolean allSatisfy​(FloatPredicate predicate)
        Description copied from interface: FloatIterable
        Returns true if all of the elements in the FloatIterable return true for the specified predicate, otherwise returns false.
        Specified by:
        allSatisfy in interface FloatIterable
      • noneSatisfy

        public boolean noneSatisfy​(FloatPredicate predicate)
        Description copied from interface: FloatIterable
        Returns true if none of the elements in the FloatIterable return true for the specified predicate, otherwise returns false.
        Specified by:
        noneSatisfy in interface FloatIterable
      • maxIfEmpty

        public float maxIfEmpty​(float defaultValue)
        Specified by:
        maxIfEmpty in interface FloatIterable
      • minIfEmpty

        public float minIfEmpty​(float defaultValue)
        Specified by:
        minIfEmpty in interface FloatIterable
      • addToValue

        public float addToValue​(float key,
                                float toBeAdded)
        Description copied from interface: MutableFloatFloatMap
        Increments and updates the value associated with the key, if a value exists, or sets the value to be the specified value if one does not.
        Specified by:
        addToValue in interface MutableFloatFloatMap
        Parameters:
        key - the key
        toBeAdded - the amount to increment the existing value, if one exists, or to use as the initial value if one does not
        Returns:
        the value after incrementing toBeAdded to the existing value associated with key or toBeAdded if one does not
      • toArray

        public float[] toArray()
        Description copied from interface: FloatIterable
        Converts the FloatIterable to a primitive float array.
        Specified by:
        toArray in interface FloatIterable
      • toArray

        public float[] toArray​(float[] target)
        Description copied from interface: FloatIterable
        Converts the FloatIterable to a primitive float array. If the collection fits into the provided array it is used to store its elements and is returned from the method, otherwise a new array of the appropriate size is allocated and returned. If the iterable is empty, the target array is returned unchanged.
        Specified by:
        toArray in interface FloatIterable
      • contains

        public boolean contains​(float value)
        Description copied from interface: FloatIterable
        Returns true if the value is contained in the FloatIterable, and false if it is not.
        Specified by:
        contains in interface FloatIterable
      • containsAll

        public boolean containsAll​(float... source)
        Description copied from interface: FloatIterable
        Returns true if all of the values specified in the source array are contained in the FloatIterable, and false if they are not.
        Specified by:
        containsAll in interface FloatIterable
      • containsAll

        public boolean containsAll​(FloatIterable source)
        Description copied from interface: FloatIterable
        Returns true if all of the values specified in the source FloatIterable are contained in the FloatIterable, and false if they are not.
        Specified by:
        containsAll in interface FloatIterable
      • asUnmodifiable

        public MutableFloatFloatMap asUnmodifiable()
        Description copied from interface: MutableFloatFloatMap
        Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing an UnsupportedOperationException for all mutating operations. This avoids the overhead of copying the map when calling FloatFloatMap.toImmutable() while still providing immutability.
        Specified by:
        asUnmodifiable in interface MutableFloatFloatMap
        Returns:
        an unmodifiable view of this map
      • toImmutable

        public ImmutableFloatFloatMap toImmutable()
        Description copied from interface: FloatFloatMap
        Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable.
        Specified by:
        toImmutable in interface FloatFloatMap
        Returns:
        an immutable map that is equivalent to this one
      • keySet

        public MutableFloatSet keySet()
        Description copied from interface: FloatFloatMap
        Returns a set containing all the keys in this map. The set is backed by the map, so any modifications to the returned set will affect this map.
        Specified by:
        keySet in interface FloatFloatMap
        Returns:
        a mutable set containing the keys in this map
      • values

        public MutableFloatCollection values()
        Description copied from interface: FloatValuesMap
        Returns the values in this map as a separate collection. The returned collection is backed by the map, so any changes made to the returned collection will affect the state of this map.
        Specified by:
        values in interface FloatValuesMap
        Returns:
        the values as a collection backed by this map
      • equals

        public boolean equals​(java.lang.Object otherMap)
        Description copied from interface: FloatFloatMap
        Follows the same general contract as Map.equals(Object).
        Specified by:
        equals in interface FloatFloatMap
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Description copied from interface: FloatFloatMap
        Follows the same general contract as Map.hashCode().
        Specified by:
        hashCode in interface FloatFloatMap
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Description copied from interface: FloatFloatMap
        Follows the same general contract as AbstractMap.toString()
        Specified by:
        toString in interface FloatFloatMap
        Specified by:
        toString in interface PrimitiveIterable
        Overrides:
        toString in class java.lang.Object
        Returns:
        a string representation of this FloatFloatMap
        See Also:
        AbstractCollection.toString()
      • makeString

        public java.lang.String makeString()
        Description copied from interface: PrimitiveIterable
        Returns a string representation of this collection by delegating to PrimitiveIterable.makeString(String) and defaulting the separator parameter to the characters ", " (comma and space).
        Specified by:
        makeString in interface PrimitiveIterable
        Returns:
        a string representation of this collection.
      • makeString

        public java.lang.String makeString​(java.lang.String start,
                                           java.lang.String separator,
                                           java.lang.String end)
        Description copied from interface: PrimitiveIterable
        Returns a string representation of this collection with the elements separated by the specified separator and enclosed between the start and end strings.
        Specified by:
        makeString in interface PrimitiveIterable
        Returns:
        a string representation of this collection.
      • chunk

        public RichIterable<FloatIterable> chunk​(int size)
        Description copied from interface: FloatIterable
        Partitions elements in fixed size chunks.
        Specified by:
        chunk in interface FloatIterable
        Parameters:
        size - the number of elements per chunk
        Returns:
        A RichIterable containing FloatIterables of size size, except the last will be truncated if the elements don't divide evenly.