Java Collection Search getSingle(Collection configs)

Here you can find the source of getSingle(Collection configs)

Description

get Single

License

Open Source License

Declaration

public static <T> T getSingle(Collection<T> configs) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2015 Pivotal, Inc.//from  w w w. j a va  2  s .  co  m
 * 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:
 *     Pivotal, Inc. - initial API and implementation
 *******************************************************************************/

import java.util.Collection;

public class Main {
    public static <T> T getSingle(Collection<T> configs) {
        if (configs.size() == 1) {
            for (T t : configs) {
                return t;
            }
        }
        return null;
    }
}

Related

  1. getSingleElement(Collection collection)
  2. getSingleElement(Collection collection)
  3. getSingleItem(Collection values)
  4. getSingleValue(Iterable collection)