core

This module holds utilities used in other libraries of the toolkit. Check the packages' documentation for more details. You can find a quick recap of the main features in the sections below.

Install the Dependency

This module is not meant to be imported directly. It will be included by using any other part of the toolkit. However, if you only want to use the utilities, logging, etc. (i.e., for a desktop application), you can import it with the following code:

=== "build.gradle"

```groovy
repositories {
    mavenCentral()
}

implementation("com.hexagonkt:core:$hexagonVersion")
```

=== "pom.xml"

```xml
com.hexagonktcore$hexagonVersion
```

Packages

Link copied to clipboard

JVM information and other useful utilities. Includes basic program settings support at the /api/core/com.hexagonkt.core/-jvm object (like loading and retrieving system settings).

Link copied to clipboard

Provides a logging management capabilities abstracting the application from logging libraries.

Link copied to clipboard

Media types definitions and constants for default media types.

Link copied to clipboard

Cryptography and key stores utilities.

Link copied to clipboard

Text utilities to allow the use of ANSI escape codes and case converting tools among other features.