m

maybe

Maybe for Java is not a replacement for java.util.Optional. Instead, it leverages its benefits to create a functional API that allows to execute/resolve operations that may throw an exception. The intention is not only to avoid the imperative try/catch, but also to promote safe exception handling and functional programming in Java
https://github.com/JoseLion/maybe
The Apache License, Version 2.0
Jose Luis Leon
文件下载
文件名 操作
maybe-1.0.0-GA.jar 下载
maybe-1.0.0-GA.pom 下载
maybe-1.0.0-GA-sources.jar 下载
Apache Maven
<dependency>
  <groupId>com.github.joselion</groupId>
  <artifactId>maybe</artifactId>
  <version>1.0.0-GA</version>
</dependency>
Gradle Groovy
implementation 'com.github.joselion:maybe:1.0.0-GA'
Gradle Kotlin
implementation("com.github.joselion:maybe:1.0.0-GA")
Scala SBT
libraryDependencies += "com.github.joselion" % "maybe" % "1.0.0-GA"
Groovy Grape
@Grapes(
  @Grab(group='com.github.joselion', module='maybe', version='1.0.0-GA')
)
Apache Ivy
<dependency org="com.github.joselion" name="maybe" rev="1.0.0-GA" />
Leiningen
[com.github.joselion/maybe "1.0.0-GA"]
Apache Buildr
'com.github.joselion:maybe:jar:1.0.0-GA'
本项目依赖
该项目无第三方依赖