Java Calendar Second getSecond(Calendar calendar)

Here you can find the source of getSecond(Calendar calendar)

Description

get Second

License

Apache License

Declaration

static public int getSecond(Calendar calendar) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.Calendar;

public class Main {
    static public int getSecond(Calendar calendar) {
        return calendar.get(Calendar.SECOND);
    }/* w w  w .j av  a2s. com*/
}

Related

  1. after(final Calendar first, final Calendar second)
  2. clearCalendarSecondWithRear(Calendar cal)
  3. dateEquals(Calendar calendarFirst, Calendar calendarSecond)
  4. getSecondsSinceMidnight(Calendar c)
  5. getSecondsSinceMidnight(final Calendar time)
  6. getTimeInSeconds(Calendar t)
  7. getTimeSeconds(Calendar cal)