c

core

An advanced, free and open source Java library that contains THE MOST POWERFUL CLASSPATH SCANNER for criteria based classes search. It’s possible to search classes by every criteria that your immagination can made by using lambda expressions. Scan engine is highly optimized using direct allocated ByteBuffers to avoid heap saturation; searches are executed in multithreading context and are not affected by “the issue of the same class loaded by different classloaders” (normally if you try to execute "isAssignableFrom" method on a same class loaded from different classloader it return false). This library is useful also for creating classes during runtime, facilitate the use of reflection and much more...
https://www.burningwave.org/
MIT License
Burningwave
Roberto Gentili
Files download
File Operation
core-2.1.4.jar download
core-2.1.4.pom download
core-2.1.4-sources.jar download
Apache Maven
<dependency>
  <groupId>org.burningwave</groupId>
  <artifactId>core</artifactId>
  <version>2.1.4</version>
</dependency>
Gradle Groovy
implementation 'org.burningwave:core:2.1.4'
Gradle Kotlin
implementation("org.burningwave:core:2.1.4")
Scala SBT
libraryDependencies += "org.burningwave" % "core" % "2.1.4"
Groovy Grape
@Grapes(
  @Grab(group='org.burningwave', module='core', version='2.1.4')
)
Apache Ivy
<dependency org="org.burningwave" name="core" rev="2.1.4" />
Leiningen
[org.burningwave/core "2.1.4"]
Apache Buildr
'org.burningwave:core:jar:2.1.4'