Here you can find the source of isNotEmpty(NodeList nodeList)
nodeList
is not empty.
Parameter | Description |
---|---|
nodeList | NodeList |
public static boolean isNotEmpty(NodeList nodeList)
//package com.java2s; /**/* ww w . j av a 2 s. c om*/ * Copyright 2013-2014 The JMingo Team * <p> * 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 * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * 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 org.w3c.dom.NodeList; public class Main { /** * Null-safe check if the specified <code>nodeList</code> is not empty. * * @param nodeList {@link NodeList} * @return true if non-null and non-empty otherwise returns false */ public static boolean isNotEmpty(NodeList nodeList) { return nodeList != null && nodeList.getLength() > 0; } }