Package org.springframework.util

Examples of org.springframework.util.LinkedCaseInsensitiveMap


   * @return the new Map instance
   * @deprecated as of Spring 3.0, for usage on JDK 1.5 or higher
   */
  @Deprecated
  public static Map createLinkedCaseInsensitiveMapIfPossible(int initialCapacity) {
    return new LinkedCaseInsensitiveMap(initialCapacity);
  }
View Full Code Here


   * @return the new Map instance
   * @deprecated as of Spring 3.0, for usage on JDK 1.5 or higher
   */
  @Deprecated
  public static Map createLinkedCaseInsensitiveMapIfPossible(int initialCapacity) {
    return new LinkedCaseInsensitiveMap(initialCapacity);
  }
View Full Code Here

   * @return the new Map instance
   * @deprecated as of Spring 3.0, for usage on JDK 1.5 or higher
   */
  @Deprecated
  public static Map createLinkedCaseInsensitiveMapIfPossible(int initialCapacity) {
    return new LinkedCaseInsensitiveMap(initialCapacity);
  }
View Full Code Here

TOP

Related Classes of org.springframework.util.LinkedCaseInsensitiveMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.