Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
eu.lunisolar.magma.func.supplier.LCharSupplier Maven / Gradle / Ivy
/*
* This file is part of "lunisolar-magma".
*
* (C) Copyright 2014-2019 Lunisolar (http://lunisolar.eu/).
*
* 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 eu.lunisolar.magma.func.supplier;
import javax.annotation.Nonnull; // NOSONAR
import javax.annotation.Nullable; // NOSONAR
import java.util.Objects; // NOSONAR
import eu.lunisolar.magma.basics.*; // NOSONAR
import eu.lunisolar.magma.basics.builder.*; // NOSONAR
import eu.lunisolar.magma.basics.exceptions.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.aType.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.functional.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.functional.type.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.functional.domain.*; // NOSONAR
import eu.lunisolar.magma.func.IA;
import eu.lunisolar.magma.func.SA;
import eu.lunisolar.magma.func.*; // NOSONAR
import eu.lunisolar.magma.func.tuple.*; // NOSONAR
import java.util.function.*; // NOSONAR
import java.util.*;
import eu.lunisolar.magma.func.action.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.bi.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.obj.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.tri.*; // NOSONAR
import eu.lunisolar.magma.func.function.*; // NOSONAR
import eu.lunisolar.magma.func.function.conversion.*; // NOSONAR
import eu.lunisolar.magma.func.function.from.*; // NOSONAR
import eu.lunisolar.magma.func.function.to.*; // NOSONAR
import eu.lunisolar.magma.func.operator.binary.*; // NOSONAR
import eu.lunisolar.magma.func.operator.ternary.*; // NOSONAR
import eu.lunisolar.magma.func.operator.unary.*; // NOSONAR
import eu.lunisolar.magma.func.predicate.*; // NOSONAR
import eu.lunisolar.magma.func.supplier.*; // NOSONAR
/**
* Non-throwing functional interface (lambda) LCharSupplier for Java 8.
*
* Type: supplier
*
* Domain (lvl: 0): none
*
* Co-domain: char
*
*/
@FunctionalInterface
@SuppressWarnings("UnusedDeclaration")
public interface LCharSupplier extends MetaSupplier, MetaInterface.NonThrowing, Codomain, Domain0 { // NOSONAR
String DESCRIPTION = "LCharSupplier: char getAsChar()";
// char getAsChar() ;
default char getAsChar() {
// return nestingGetAsChar();
try {
return this.getAsCharX();
} catch (Throwable e) { // NOSONAR
throw Handling.nestCheckedAndThrow(e);
}
}
/**
* Implement this, but call getAsChar()
*/
char getAsCharX() throws Throwable;
default char tupleGetAsChar(LTuple.Void args) {
return getAsChar();
}
/** Function call that handles exceptions according to the instructions. */
default char handlingGetAsChar(HandlingInstructions handling) {
try {
return this.getAsCharX();
} catch (Throwable e) { // NOSONAR
throw Handler.handleOrNest(e, handling);
}
}
default LCharSupplier handling(HandlingInstructions handling) {
return () -> handlingGetAsChar(handling);
}
default char getAsChar(@Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
try {
return this.getAsCharX();
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF, newMessage, messageParams);
}
}
default LCharSupplier trying(@Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
return () -> getAsChar(exF, newMessage, messageParams);
}
default char getAsChar(@Nonnull ExWF exF) {
try {
return this.getAsCharX();
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF);
}
}
default LCharSupplier trying(@Nonnull ExWF exF) {
return () -> getAsChar(exF);
}
default char getAsCharThen(@Nonnull LToCharFunction handler) {
try {
return this.getAsCharX();
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return handler.applyAsChar(e);
}
}
default LCharSupplier tryingThen(@Nonnull LToCharFunction handler) {
return () -> getAsCharThen(handler);
}
/** Function call that handles exceptions by always nesting checked exceptions and propagating the others as is. */
default char nestingGetAsChar() {
try {
return this.getAsCharX();
} catch (Throwable e) { // NOSONAR
throw Handling.nestCheckedAndThrow(e);
}
}
/** Function call that handles exceptions by always propagating them as is, even when they are undeclared checked ones. */
default char shovingGetAsChar() {
try {
return this.getAsCharX();
} catch (Throwable e) { // NOSONAR
throw Handling.shoveIt(e);
}
}
static char handlingGetAsChar(LCharSupplier func, HandlingInstructions handling) { // <-
Null.nonNullArg(func, "func");
return func.handlingGetAsChar(handling);
}
static char tryGetAsChar(LCharSupplier func) {
Null.nonNullArg(func, "func");
return func.nestingGetAsChar();
}
static char tryGetAsChar(LCharSupplier func, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
Null.nonNullArg(func, "func");
return func.getAsChar(exF, newMessage, messageParams);
}
static char tryGetAsChar(LCharSupplier func, @Nonnull ExWF exF) {
Null.nonNullArg(func, "func");
return func.getAsChar(exF);
}
static char tryGetAsCharThen(LCharSupplier func, @Nonnull LToCharFunction handler) {
Null.nonNullArg(func, "func");
return func.getAsCharThen(handler);
}
default char failSafeGetAsChar(@Nonnull LCharSupplier failSafe) {
try {
return getAsChar();
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return failSafe.getAsChar();
}
}
static char failSafeGetAsChar(LCharSupplier func, @Nonnull LCharSupplier failSafe) {
Null.nonNullArg(failSafe, "failSafe");
if (func == null) {
return failSafe.getAsChar();
} else {
return func.failSafeGetAsChar(failSafe);
}
}
static LCharSupplier failSafe(LCharSupplier func, @Nonnull LCharSupplier failSafe) {
Null.nonNullArg(failSafe, "failSafe");
return () -> failSafeGetAsChar(func, failSafe);
}
/** Just to mirror the method: Ensures the result is not null */
default char nonNullGetAsChar() {
return getAsChar();
}
/** Returns description of the functional interface. */
@Nonnull
default String functionalInterfaceDescription() {
return LCharSupplier.DESCRIPTION;
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTo(int min_i, int max_i, LCharSupplier func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i <= max_i; i++) {
func.getAsChar();
}
} else {
for (int i = min_i; i >= max_i; i--) {
func.getAsChar();
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTill(int min_i, int max_i, LCharSupplier func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i < max_i; i++) {
func.getAsChar();
}
} else {
for (int i = min_i; i > max_i; i--) {
func.getAsChar();
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void times(int max_i, LCharSupplier func) {
if (max_i < 0)
return;
fromTill(0, max_i, func);
}
/** Creates function that always returns the same value. */
static LCharSupplier of(char r) {
return () -> r;
}
/** Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces). */
@Nonnull
static LCharSupplier charSup(final @Nonnull LCharSupplier lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda;
}
@Nonnull
static LCharSupplier recursive(final @Nonnull LFunction selfLambda) {
final LCharSupplierSingle single = new LCharSupplierSingle();
LCharSupplier func = selfLambda.apply(single);
single.target = func;
return func;
}
final class LCharSupplierSingle implements LSingle, LCharSupplier {
private LCharSupplier target = null;
@Override
public char getAsCharX() throws Throwable {
return target.getAsCharX();
}
@Override
public LCharSupplier value() {
return target;
}
}
@Nonnull
static LCharSupplier charSupThrowing(final @Nonnull ExF exF) {
Null.nonNullArg(exF, "exF");
return () -> {
throw exF.produce();
};
}
@Nonnull
static LCharSupplier charSupThrowing(final String message, final @Nonnull ExMF exF) {
Null.nonNullArg(exF, "exF");
return () -> {
throw exF.produce(message);
};
}
static char call(final @Nonnull LCharSupplier lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda.getAsChar();
}
//
//
//
/** Safe instance. That always returns the same value (as produceChar). */
@Nonnull
static LCharSupplier safe() {
return LCharSupplier::produceChar;
}
/** Safe instance supplier. Returns supplier of safe() instance. */
@Nonnull
static LSupplier safeSupplier() {
return () -> safe();
}
/** Safe wrapping. Either argument function is returned (if it is not null) or safe() instance. */
@Nonnull
static LCharSupplier safe(final @Nullable LCharSupplier other) {
if (other == null) {
return safe();
} else {
return other;
}
}
/** Safe supplier. Either argument supplier is returned (if it is not null) or supplier of safe() instance. */
@Nonnull
static LSupplier safeSupplier(final @Nullable LSupplier supplier) {
if (supplier == null) {
return safeSupplier();
} else {
return supplier;
}
}
//
//
/** Combines two functions together in a order. */
@Nonnull
default LSupplier toSup(@Nonnull LCharFunction extends V> after) {
Null.nonNullArg(after, "after");
return () -> after.apply(this.getAsChar());
}
/** Combines two functions together in a order. */
@Nonnull
default LByteSupplier toByteSup(@Nonnull LCharToByteFunction after) {
Null.nonNullArg(after, "after");
return () -> after.applyAsByte(this.getAsChar());
}
/** Combines two functions together in a order. */
@Nonnull
default LSrtSupplier toSrtSup(@Nonnull LCharToSrtFunction after) {
Null.nonNullArg(after, "after");
return () -> after.applyAsSrt(this.getAsChar());
}
/** Combines two functions together in a order. */
@Nonnull
default LIntSupplier toIntSup(@Nonnull LCharToIntFunction after) {
Null.nonNullArg(after, "after");
return () -> after.applyAsInt(this.getAsChar());
}
/** Combines two functions together in a order. */
@Nonnull
default LLongSupplier toLongSup(@Nonnull LCharToLongFunction after) {
Null.nonNullArg(after, "after");
return () -> after.applyAsLong(this.getAsChar());
}
/** Combines two functions together in a order. */
@Nonnull
default LFltSupplier toFltSup(@Nonnull LCharToFltFunction after) {
Null.nonNullArg(after, "after");
return () -> after.applyAsFlt(this.getAsChar());
}
/** Combines two functions together in a order. */
@Nonnull
default LDblSupplier toDblSup(@Nonnull LCharToDblFunction after) {
Null.nonNullArg(after, "after");
return () -> after.applyAsDbl(this.getAsChar());
}
/** Combines two functions together in a order. */
@Nonnull
default LCharSupplier toCharSup(@Nonnull LCharUnaryOperator after) {
Null.nonNullArg(after, "after");
return () -> after.applyAsChar(this.getAsChar());
}
/** Combines two functions together in a order. */
@Nonnull
default LBoolSupplier toBoolSup(@Nonnull LCharPredicate after) {
Null.nonNullArg(after, "after");
return () -> after.test(this.getAsChar());
}
//
//
//
/** Does nothing (LCharSupplier) Supplier */
public static char produceChar() {
return Function4U.defaultCharacter;
}
}