Package entities

Examples of entities.FinaBaseTimes


          String[] entry = scanner.nextLine().split(";");

          entry[10] = entry[10].isEmpty() ? "99:99.99" : entry[10];
          entry[11] = entry[11].isEmpty() ? "99:99.99" : entry[11];

          fina.add(new FinaBaseTimes(entry[0], entry[1], entry[2], entry[4], Integer.parseInt(entry[3]),
              entry[5], entry[6], getMinuteFromString(entry[10]), getSecondsFromString(entry[10]),
              getMSecondsFromString(entry[10]), Double.parseDouble(entry[11].replace(",", "."))));
        }
      } catch (NumberFormatException e) {
View Full Code Here

TOP

Related Classes of entities.FinaBaseTimes

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.