From e610c996f0107cf3c9dc489e67c1eaebfeb73551 Mon Sep 17 00:00:00 2001 From: Alexander Alexeev Date: Sun, 13 Nov 2016 23:49:29 +0700 Subject: using TagUtils class --- .../src/main/java/com/juick/util/TagUtils.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 server-core/src/main/java/com/juick/util/TagUtils.java (limited to 'server-core/src/main/java/com/juick/util') diff --git a/server-core/src/main/java/com/juick/util/TagUtils.java b/server-core/src/main/java/com/juick/util/TagUtils.java new file mode 100644 index 00000000..157522ab --- /dev/null +++ b/server-core/src/main/java/com/juick/util/TagUtils.java @@ -0,0 +1,24 @@ +package com.juick.util; + +import com.juick.Tag; +import org.apache.commons.collections4.CollectionUtils; + +import java.util.List; +import java.util.stream.Collectors; + +/** + * Created by aalexeev on 11/13/16. + */ +public class TagUtils { + private TagUtils() { + throw new IllegalStateException(); + } + + public static String toString(final List tags) { + if (CollectionUtils.isEmpty(tags)) + return ""; + + return tags.stream().map(t -> " *" + t.getName()) + .collect(Collectors.joining()); + } +} -- cgit v1.2.3