Java Milliseconds getMillis(long ticks)

Here you can find the source of getMillis(long ticks)

Description

Convert minecraft ticks to milliseconds.

License

Open Source License

Parameter

Parameter Description
ticks The minecraft ticks.

Return

The milliseconds.

Declaration

public static long getMillis(long ticks) 

Method Source Code

//package com.java2s;
/*//from   www  .j a  va2s  .co  m
 * This file is part of QuarterBukkit-Plugin.
 * Copyright (c) 2012 QuarterCode <http://www.quartercode.com/>
 *
 * QuarterBukkit-Plugin 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.
 *
 * QuarterBukkit-Plugin 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 QuarterBukkit-Plugin. If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * Convert minecraft ticks to milliseconds.
     * 
     * @param ticks The minecraft ticks.
     * @return The milliseconds.
     */
    public static long getMillis(long ticks) {

        return (long) (ticks * 50D);
    }
}

Related

  1. getExpirationMillisAbs(int recordExpirationTimestamp)
  2. getFullSecondsElapsedTimeMillis(long start, long end)
  3. getLogTimeFromMillis(Long millis)
  4. getMillis()
  5. getMillis()
  6. getMillis(long timeInMinutes)
  7. getMillis(String _cal)
  8. getMillis(String dateStr)
  9. getMillis(String decimal)