Java Array arrayValid(Object[] objects)

Here you can find the source of arrayValid(Object[] objects)

Description

array Valid

License

Apache License

Declaration

public static boolean arrayValid(Object[] objects) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static boolean arrayValid(Object[] objects) {
        if (objects != null && objects.length > 0) {
            return true;
        } else {//from   w w w  . j  a  v a 2s. c o  m
            return false;
        }
    }
}

Related

  1. arrayStringR(double[] data)
  2. arrayTransfer(int[] ids)
  3. arrayType(String type)
  4. arrayTypeToZeroLengthArray(String arrayType)
  5. arrayUnEscape(String string)
  6. arrayValidLength(int[] array)
  7. arrayWithoutFirstElement(final String[] array)