Java examples for java.util:LinkedHashSet
Null safe creation of a LinkedHashSet out of a given collection without null elements.
/******************************************************************************* * Copyright (c) 2010 BSI Business Systems Integration AG. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors://from w w w. j av a 2 s. c o m * BSI Business Systems Integration AG - initial API and implementation ******************************************************************************/ //package com.book2s; import java.util.Collection; import java.util.LinkedHashSet; public class Main { public static void main(String[] argv) { Collection c = java.util.Arrays.asList("asdf", "book2s.com"); System.out.println(orderedHashSetWithoutNullElements(c)); } /** * Null safe creation of a {@link LinkedHashSet} out of a given collection without <code>null</code> elements. The * returned {@link LinkedHashSet} is modifiable and never null. * * @param c * @return an {@link LinkedHashSet} containing the given collection's elements without <code>null</code> elements. * Never * null. */ public static <T> LinkedHashSet<T> orderedHashSetWithoutNullElements( Collection<? extends T> c) { LinkedHashSet<T> set = orderedHashSet(c); set.remove(null); return set; } /** * Null safe creation of a {@link LinkedHashSet} out of a given collection. The returned {@link LinkedHashSet} is * modifiable and * never null. * * @param c * @return an {@link LinkedHashSet} containing the given collection's elements. Never null. */ public static <T> LinkedHashSet<T> orderedHashSet( Collection<? extends T> c) { if (c != null) { return new LinkedHashSet<T>(c); } return new LinkedHashSet<T>(0); } }