├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src └── main ├── assembly └── jar-with-dependencies.xml ├── java └── org │ └── gaul │ └── collection_overhead │ └── CollectionOverhead.java └── resources ├── checkstyle.xml └── copyright_header.txt /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaul/java-collection-overhead/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaul/java-collection-overhead/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaul/java-collection-overhead/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/assembly/jar-with-dependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaul/java-collection-overhead/HEAD/src/main/assembly/jar-with-dependencies.xml -------------------------------------------------------------------------------- /src/main/java/org/gaul/collection_overhead/CollectionOverhead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaul/java-collection-overhead/HEAD/src/main/java/org/gaul/collection_overhead/CollectionOverhead.java -------------------------------------------------------------------------------- /src/main/resources/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaul/java-collection-overhead/HEAD/src/main/resources/checkstyle.xml -------------------------------------------------------------------------------- /src/main/resources/copyright_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaul/java-collection-overhead/HEAD/src/main/resources/copyright_header.txt --------------------------------------------------------------------------------