Class CollectionUtil
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.util.CollectionUtil
-
public final class CollectionUtil extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <E> List<E>
asList(E... elements)
static <K,V>
LinkedHashMap<K,V>asMap(Object... elements)
static <E> LinkedHashSet<E>
asSet(E... elements)
static <E> LinkedHashSet<E>
asSet(Collection<E> elements)
static <K,V>
ConcurrentHashMap<K,V>clone(ConcurrentHashMap<K,V> map)
-
-
-
Method Detail
-
asList
public static <E> List<E> asList(E... elements)
-
asSet
public static <E> LinkedHashSet<E> asSet(E... elements)
-
asSet
public static <E> LinkedHashSet<E> asSet(Collection<E> elements)
-
asMap
public static <K,V> LinkedHashMap<K,V> asMap(Object... elements)
-
clone
public static <K,V> ConcurrentHashMap<K,V> clone(ConcurrentHashMap<K,V> map)
-
-