javascalautils.Failure Maven / Gradle / Ivy
/**
* Copyright 2015 Peter Nerg
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javascalautils;
import java.io.Serializable;
import java.util.function.Function;
import java.util.function.Supplier;
/**
* Represents the 'failed' implementation of {@link Try}.
* For examples on usage refer to the documentation for {@link Try}.
*
* @author Peter Nerg
* @since 1.0
* @param
* The type of the exception represented by this instance
*/
public final class Failure implements Try, Serializable {
private static final long serialVersionUID = -3153874073796965428L;
private final Throwable throwable;
/**
* Creates a Failure for the provided Throwable.
* Null values are not allowed since a 'failure' needs a reason.
*
* @param throwable
* The throwable
*/
public Failure(Throwable throwable) {
this.throwable = Validator.requireNonNull(throwable, "Null values are not allowed for Failure");
}
/**
* Always returns false
.
*/
@Override
public boolean isSuccess() {
return false;
}
/**
* Always returns the value provided by the supplier.
*/
@Override
public T getOrElse(Supplier supplier) {
return supplier.get();
}
/**
* Always returns the value provided by the supplier.
*/
@Override
public Try orElse(Supplier> supplier) {
return supplier.get();
}
/**
* Always throws the {@link Throwable} this instance represents.
*/
@Override
public T get() throws Throwable {
throw throwable;
}
/**
* Returns a {@link Success} with the {@link Throwable} this instance represents.
*/
@Override
public Try failed() {
return new Success(throwable);
}
/**
* Always returns this
*/
@SuppressWarnings("unchecked")
@Override
public Try map(Function function) {
return (Try) this;
}
/**
* Always returns this
*/
@Override
public Try flatMap(Function> function) {
return map(null);
}
/**
* Returns a String representation of the instance.
*/
@Override
public String toString() {
return "Failure:" + throwable.getMessage();
}
}