m

maybe

Maybe is a monadic wrapper similar java.util.Optional, but with a different intention. By leveraging Optional benefits, it provides a functional API that safely allows us to perform operations that may or may not throw checked and unchecked exceptions. The wrapper intends to help us avoid the imperative try/catch syntax, while promoting safe exception handling and functional programming principles.
https://github.com/JoseLion/maybe
The Apache License, Version 2.0
Jose Luis Leon
Files download
File Operation
maybe-2.0.0.jar download
maybe-2.0.0.pom download
maybe-2.0.0-sources.jar download
Apache Maven
<dependency>
  <groupId>com.github.joselion</groupId>
  <artifactId>maybe</artifactId>
  <version>2.0.0</version>
</dependency>
Gradle Groovy
implementation 'com.github.joselion:maybe:2.0.0'
Gradle Kotlin
implementation("com.github.joselion:maybe:2.0.0")
Scala SBT
libraryDependencies += "com.github.joselion" % "maybe" % "2.0.0"
Groovy Grape
@Grapes(
  @Grab(group='com.github.joselion', module='maybe', version='2.0.0')
)
Apache Ivy
<dependency org="com.github.joselion" name="maybe" rev="2.0.0" />
Leiningen
[com.github.joselion/maybe "2.0.0"]
Apache Buildr
'com.github.joselion:maybe:jar:2.0.0'
Dependencies
The project has no third-party dependencies