Java Second Convert convertSecondsToMiliseconds(int secondsToConvert)

Here you can find the source of convertSecondsToMiliseconds(int secondsToConvert)

Description

converts a given time from seconds -> miliseconds

License

Open Source License

Parameter

Parameter Description
seconds a parameter

Declaration

public static int convertSecondsToMiliseconds(int secondsToConvert) 

Method Source Code

//package com.java2s;
/*/*w ww  .j a  v  a 2  s  . com*/
 * This program is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or (at your option) any later
 * version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program. If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * converts a given time from seconds -> miliseconds
     * @param seconds
     * @return
     */
    public static int convertSecondsToMiliseconds(int secondsToConvert) {
        return secondsToConvert * 1000;
    }
}

Related

  1. convertMilisecondsToDisplay(Integer milliseconds, int fps)
  2. convertMsToFloatSeconds(final long timeMs)
  3. convertSeconds(String sStartSeconds, String sEndSeconds)
  4. convertSecondsToDays(double secs)
  5. convertSecondsToMiliseconds(double seconds)
  6. convertSecondsToMillies(final long seconds)
  7. convertSecondsToString(double seconds)
  8. convertSecondsToTime(int seconds)
  9. convertSecondsToTime(int totalSecs)