Here you can find the source of isNotEmpty(List values)
Parameter | Description |
---|---|
values | the list to check |
@SuppressWarnings("rawtypes") public static boolean isNotEmpty(List values)
//package com.java2s; /*/*from w w w . j a va2 s . c o m*/ * Copyright 2012-2013 TopCoder, Inc. * * This code was developed under U.S. government contract NNH10CD71C. * * 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. */ import java.util.List; public class Main { /** * Checks of the given array contains any elements. * * @param values the array to check * @return true if the array is not empty */ public static boolean isNotEmpty(Object[] values) { return !isEmpty(values); } /** * Checks of the given list contains any elements. * * @param values the list to check * @return true if the list is not empty */ @SuppressWarnings("rawtypes") public static boolean isNotEmpty(List values) { return !isEmpty(values); } /** * Checks of the given array contains any elements. * * @param values the array to check * @return true if the array is null or empty */ public static boolean isEmpty(Object[] values) { return values == null || values.length == 0; } /** * Checks of the given list contains any elements. * * @param values the list to check * @return true if the list is null or empty */ @SuppressWarnings("rawtypes") public static boolean isEmpty(List values) { return values == null || values.isEmpty(); } }