com.github.tonivade.purefun.Nothing Maven / Gradle / Ivy
/*
* Copyright (c) 2018-2020, Antonio Gabriel Muñoz Conejo
* Distributed under the terms of the MIT License
*/
package com.github.tonivade.purefun;
/**
* It represents a type that cannot be instantiated. Similar to {@link Void} type
* in JVM but is not a substitution for {@code void}
*/
public final class Nothing {
private Nothing() {}
public static Nothing nothing() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy