Class TUnmodifiableFloatFloatMaps



  • public class TUnmodifiableFloatFloatMaps
    extends Object
    • Method Detail

      • wrap

        public static TFloatFloatMap wrap(TFloatFloatMap m)
        Returns an unmodifiable view of the specified Trove primitive/primitive map. This method allows modules to provide users with "read-only" access to internal maps. Query operations on the returned map "read through" to the specified map, and attempts to modify the returned map, whether direct or via its collection views, result in an UnsupportedOperationException.

        The returned map will be serializable if the specified map is serializable.

        Parameters:
        m - the map for which an unmodifiable view is to be returned.
        Returns:
        an unmodifiable view of the specified Trove primitive/primitive map.