Java List Contain containsAtLeastAValue(List values)

Here you can find the source of containsAtLeastAValue(List values)

Description

contains At Least A Value

License

Apache License

Declaration

private static boolean containsAtLeastAValue(List<String> values) 

Method Source Code

//package com.java2s;
/*/*from  w ww  . j  a v a  2 s  . c  o m*/
 * #%L
 * Wisdom-Framework
 * %%
 * Copyright (C) 2013 - 2014 Wisdom Framework
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import java.util.List;

public class Main {
    private static boolean containsAtLeastAValue(List<String> values) {
        return values != null && !values.isEmpty();
    }
}

Related

  1. containsAny(final String projectName, final List indicators)
  2. containsAny(List value, Object[] values)
  3. containsAny(Set theList, Set toSearch)
  4. containsAnyOf(Exception e, List nonRetryableKeywords)
  5. containsArgument(List argList, Option option)
  6. containsAtLeastOneElement(List l1, List l2)
  7. containsBasedOnEntryIdentity(final List list, final Object object)
  8. containsCaseInsensitive(String s, List l)
  9. containsColumnByAlias(List columns, String alias)