Java Second Get getSecond(String date)

Here you can find the source of getSecond(String date)

Description

Get second

License

Open Source License

Return

second

Declaration

public static double getSecond(String date) 

Method Source Code

//package com.java2s;
/*/*  w  ww .j av a  2 s .  co  m*/
 * License information at https://github.com/Caltech-IPAC/firefly/blob/master/License.txt
 */

public class Main {
    /**
     *  Get second
     *  @return second
     */
    public static double getSecond(String date) {
        return Double.parseDouble(date.substring(15));
    }
}

Related

  1. getNumberOfSecondsBetween(final double d1, final double d2)
  2. getRemainingSeconds(final long ms)
  3. getRoundedSeconds(long seconds, long interval)
  4. getSecond(long container)
  5. getSecond(long time)
  6. getSecondByDay(int day)
  7. getSecondByHour(int hour)
  8. getSecondByteFromInt(int num)
  9. getSecondColumnAsArray(String[][] stringMatrix)