Java Minute Get getMinuteAsInt(String hourString)

Here you can find the source of getMinuteAsInt(String hourString)

Description

Gets the minute as int.

License

Open Source License

Parameter

Parameter Description
hourString the hour string

Return

the minute as int

Declaration

public static int getMinuteAsInt(String hourString) 

Method Source Code

//package com.java2s;
/*/*from w ww  .  j  av  a 2s. com*/
 * Copyright (C) 2003-2016 eXo Platform SAS.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

public class Main {
    /**
     * Gets the minute as int.
     *
     * @param hourString the hour string
     * @return the minute as int
     */
    public static int getMinuteAsInt(String hourString) {
        String[] start = hourString.split(":");
        Integer minutes = Integer.parseInt(start[1]);
        return minutes;
    }
}

Related

  1. getMinute(Date date1, Date date2)
  2. getMinute(long mills)
  3. getMinute(long time)
  4. getMinute(String time)
  5. getMinuteAfter(Date date, int minute)
  6. getMinuteCa(Date d1, Date d2)
  7. getMinuteDate(String date, String formatFormat)
  8. getMinuteFromHMS(String hms)
  9. getMinuteFromMilliSecond(int milliSecond)