MVN

com.robertboothby : TypedMap

Maven & Gradle

Feb 02, 2018
0 stars

TypedMap · This simple project creates a new type of collection interface called a TypedMap. It extends the Java Map interface to add typed methods where appropriate. These typed methods allow the use of 'Typed Keys' for storage and retrieval of values that are typed to match the Typed Keys.

<dependency>
    <groupId>com.robertboothby</groupId>
    <artifactId>TypedMap</artifactId>
    <version>0.2.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.robertboothby : TypedMap to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.2.0

All Versions

Choose a version of com.robertboothby : TypedMap to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.2.x
TypedMap-0.2.0
0.1.x
TypedMap-0.1.0

How to add a dependency to Maven

Add the following com.robertboothby : TypedMap maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.robertboothby</groupId>
    <artifactId>TypedMap</artifactId>
    <version>0.2.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.robertboothby : TypedMap gradle dependency to your build.gradle file:

implementation 'com.robertboothby:TypedMap:0.2.0'

Gradle Kotlin DSL: Add the following com.robertboothby : TypedMap gradle kotlin dependency to your build.gradle.kts file:

implementation("com.robertboothby:TypedMap:0.2.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.robertboothby : TypedMap sbt scala dependency to your build.sbt file:

libraryDependencies += "com.robertboothby" % "TypedMap" % "0.2.0"