Java List Null Empty isListEmpty(List oneList)

Here you can find the source of isListEmpty(List oneList)

Description

is List Empty

License

Open Source License

Declaration

public static Boolean isListEmpty(List oneList) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.util.*;

public class Main {
    public static Boolean isListEmpty(List oneList) {
        if (oneList == null || oneList.isEmpty()) {
            return true;
        }//  ww w  . j a v a  2  s.c om
        return false;
    }
}

Related

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