Java Calendar Millisecond getMillisecond(Calendar calendar)

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

Description

get Millisecond

License

Apache License

Declaration

static public int getMillisecond(Calendar calendar) 

Method Source Code

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

import java.util.Calendar;

public class Main {
    static public int getMillisecond(Calendar calendar) {
        return calendar.get(Calendar.MILLISECOND);
    }//from  w ww . jav a  2s .c om
}

Related

  1. clearCalendarMillisecond(Calendar cal)
  2. elapsedMillis(Calendar before, Calendar after)
  3. getCalendarXDaysFromY(long startTimeInMillis, int daysFromStartDate)
  4. getDateMilliseconds(Calendar pDate)
  5. getLastMilli(Calendar cal)
  6. getMilliSinceMidnight(Calendar arg)
  7. hasZeroMilliSeconds(Calendar cal)
  8. newCalendar(long timeInMillis)
  9. setCalendar(Calendar calendar, int wholeDays, int millisecondsInDay, boolean use1904windowing)