Android Calendar Get getMinute(Calendar c)

Here you can find the source of getMinute(Calendar c)

Description

get Minute

Declaration

public static int getMinute(Calendar c) 

Method Source Code

//package com.java2s;

import java.util.Calendar;

public class Main {
    public static int getMinute(Calendar c) {
        if (c != null) {
            return c.get(Calendar.MINUTE);
        } else {/*from   w ww. ja v a  2s  . c  o  m*/
            return Calendar.getInstance().get(Calendar.MINUTE);
        }
    }
}

Related

  1. getMaxTimeMillisToday(final Calendar calendar)
  2. getMinTimeMillisToday()
  3. getMinTimeMillisToday(final Calendar calendar)
  4. getMinTimeMillisWeek()
  5. getMinute()
  6. getMonth()
  7. getMonth(Calendar c)
  8. getSecond(Calendar c)
  9. getTimeByStr(String str)