Package jfun.util

Examples of jfun.util.ArrayAsList


  public static List asList(Object arr){
    if(arr instanceof Object[]){
      return Arrays.asList((Object[])arr);
    }
    else{
      return new ArrayAsList(arr);
    }
  }
View Full Code Here

TOP

Related Classes of jfun.util.ArrayAsList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.