Package ch.epfl.labos.iu.orm

Examples of ch.epfl.labos.iu.orm.Tuple3


         switch(subreaders.length)
         {
            case 2:
               return (U)new Pair(data[0], data[1]);
            case 3:
               return (U)new Tuple3(data[0], data[1], data[2]);
            case 4:
               return (U)new Tuple4(data[0], data[1], data[2], data[3]);
            case 5:
               return (U)new Tuple5(data[0], data[1], data[2], data[3], data[4]);
            case 8:
View Full Code Here

TOP

Related Classes of ch.epfl.labos.iu.orm.Tuple3

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.