Java Calendar Day getDay(Calendar calendar)

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

Description

get Day

License

Apache License

Declaration

static public int getDay(Calendar calendar) 

Method Source Code

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

import java.util.Calendar;

public class Main {
    static public int getDay(Calendar calendar) {
        return calendar.get(Calendar.DAY_OF_MONTH);
    }//  ww  w.j  a  va2s  .com
}

Related

  1. getCanonicalDayFrom(Calendar day, int daysFrom)
  2. getCleanDay(Calendar c)
  3. getCurDay(Calendar calendar)
  4. getDay(Calendar cal)
  5. getDay(Calendar calendar)
  6. getDayEndCalendar(Calendar cal)
  7. getDayName(Calendar cal)
  8. getDayOfPeriod(Calendar cal, long timems)
  9. getDaysFromThen(Calendar aDate)