Java Class Type Check isEmptyCollectionOrMap(Object content, Class type)

Here you can find the source of isEmptyCollectionOrMap(Object content, Class type)

Description

is Empty Collection Or Map

License

Apache License

Declaration

private static boolean isEmptyCollectionOrMap(Object content, Class<?> type) 

Method Source Code

//package com.java2s;
/*/*from   w  ww  . j a v  a 2 s.c  o m*/
 * Copyright (c) 2015. Escalon System-Entwicklung, Dietrich Schulten
 *
 * 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.*;

public class Main {
    private static boolean isEmptyCollectionOrMap(Object content, Class<?> type) {
        if (Collection.class.isAssignableFrom(type)) {
            if (content == null) {
                return true;
            } else {
                if (((List) content).isEmpty()) {
                    return true;
                }
            }
        } else if (Map.class.isAssignableFrom(type)) {
            if (content == null) {
                return true;
            } else {
                if (((List) content).isEmpty()) {
                    return true;
                }
            }
        }
        return false;
    }
}

Related

  1. isClassBelowPackage(Class theClass, List packageList)
  2. isCollection(Class clazz)
  3. isCollection(Class cls)
  4. isCollectionMapOrArray(Class type)
  5. isComposite(Class cls)
  6. isInPrimitiveWrapperType(Class type)
  7. isJavaImmutable(Class cls)
  8. isLogicalPrimitive(Class c)
  9. isMap(Class o)