java.lang.Object
dev.metaschema.core.metapath.function.library.FnConcat

public final class FnConcat extends Object
Implements the XPath 3.1 fn:concat function.
  • Method Details

    • concat

      @NonNull public static IStringItem concat(IAnyAtomicItem... items)
      An implementation of XPath 3.1 fn:concat.
      Parameters:
      items - the items to concatenate
      Returns:
      the atomized result
    • concat

      @NonNull public static IStringItem concat(@NonNull List<? extends IAnyAtomicItem> items)
      An implementation of XPath 3.1 fn:concat.
      Parameters:
      items - the items to concatenate
      Returns:
      the atomized result
    • concat

      @NonNull public static IStringItem concat(@NonNull Stream<? extends IAnyAtomicItem> items)
      An implementation of XPath 3.1 fn:concat.
      Parameters:
      items - the items to concatenate
      Returns:
      the atomized result