Class Util
- java.lang.Object
-
- com.github.vertical_blank.sqlformatter.core.util.Util
-
public class Util extends Object
-
-
Constructor Summary
Constructors Constructor Description Util()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
escapeRegExp(String s)
static <R> R
firstNotnull(Supplier<R>... sups)
static <R> Optional<R>
firstPresent(Supplier<Optional<R>>... sups)
static <T> List<T>
nullToEmpty(List<T> ts)
static String
trimEnd(String s)
-
-
-
Method Detail
-
firstNotnull
@SafeVarargs public static <R> R firstNotnull(Supplier<R>... sups)
-
firstPresent
@SafeVarargs public static <R> Optional<R> firstPresent(Supplier<Optional<R>>... sups)
-
-