Java List Null Empty isListNullOrEmpty(List lst)

Here you can find the source of isListNullOrEmpty(List lst)

Description

is List Null Or Empty

License

Open Source License

Declaration

public static boolean isListNullOrEmpty(List<?> lst) 

Method Source Code

//package com.java2s;
/*//from   w  ww .  j av  a  2 s.  c o m
 * Copyright (C) 2010 Viettel Telecom. All rights reserved.
 * VIETTEL PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

import java.util.*;

public class Main {
    public static boolean isListNullOrEmpty(List<?> lst) {
        return lst == null || lst.isEmpty();
    }
}

Related

  1. isHelp(List args, boolean valOnEmpty)
  2. isListElementsEmpty(final List l)
  3. isListEmpty(final List list)
  4. isListEmpty(List oneList)
  5. isListEmpty(List list)
  6. isNonEmptyArray(List value)
  7. isNotEmpty(final List aList)
  8. isNotEmpty(List list)
  9. isNotEmpty(List list)