Example usage for java.util Calendar OCTOBER

List of usage examples for java.util Calendar OCTOBER

Introduction

In this page you can find the example usage for java.util Calendar OCTOBER.

Prototype

int OCTOBER

To view the source code for java.util Calendar OCTOBER.

Click Source Link

Document

Value of the #MONTH field indicating the tenth month of the year in the Gregorian and Julian calendars.

Usage

From source file:freemarker.ext.dump.DumpDirectiveTest.java

private Employee getEmployee() {

    Calendar c = Calendar.getInstance();
    c.set(1982, Calendar.MAY, 5);
    c = DateUtils.truncate(c, Calendar.DATE);
    Employee jdoe = new Employee("John", "Doe", 34523, c.getTime());
    jdoe.setFavoriteColors("blue", "green");
    jdoe.setSalary(65000);//from  w ww  .j  av  a2s .co m

    //        Map<String, String> degrees = new HashMap<String, String>();
    //        degrees.put("BA", "Mathematics");
    //        degrees.put("MS", "Computer Science");
    //        jdoe.setDegrees(degrees);

    c.clear();
    c.set(1975, Calendar.OCTOBER, 25);
    c = DateUtils.truncate(c, Calendar.DATE);
    Employee jsmith = new Employee("Jane", "Smith", 78234, c.getTime());
    jsmith.setFavoriteColors("red", "orange");

    jdoe.setSupervisor(jsmith);

    return jdoe;
}

From source file:org.exist.xquery.modules.mail.SendEmailFunction.java

/**
 * Returns the current date and time in an RFC822 format, suitable for an email Date Header
 *
 * @return      RFC822 formated date and time as a String
 *///from w  ww .j  a v a2  s. c o  m
private String getDateRFC822() {

    String dateString = new String();
    final Calendar rightNow = Calendar.getInstance();

    //Day of the week
    switch (rightNow.get(Calendar.DAY_OF_WEEK)) {
    case Calendar.MONDAY:
        dateString = "Mon";
        break;

    case Calendar.TUESDAY:
        dateString = "Tue";
        break;

    case Calendar.WEDNESDAY:
        dateString = "Wed";
        break;

    case Calendar.THURSDAY:
        dateString = "Thu";
        break;

    case Calendar.FRIDAY:
        dateString = "Fri";
        break;

    case Calendar.SATURDAY:
        dateString = "Sat";
        break;

    case Calendar.SUNDAY:
        dateString = "Sun";
        break;
    }

    dateString += ", ";

    //Date
    dateString += rightNow.get(Calendar.DAY_OF_MONTH);
    dateString += " ";

    //Month
    switch (rightNow.get(Calendar.MONTH)) {
    case Calendar.JANUARY:
        dateString += "Jan";
        break;

    case Calendar.FEBRUARY:
        dateString += "Feb";
        break;

    case Calendar.MARCH:
        dateString += "Mar";
        break;

    case Calendar.APRIL:
        dateString += "Apr";
        break;

    case Calendar.MAY:
        dateString += "May";
        break;

    case Calendar.JUNE:
        dateString += "Jun";
        break;

    case Calendar.JULY:
        dateString += "Jul";
        break;

    case Calendar.AUGUST:
        dateString += "Aug";
        break;

    case Calendar.SEPTEMBER:
        dateString += "Sep";
        break;

    case Calendar.OCTOBER:
        dateString += "Oct";
        break;

    case Calendar.NOVEMBER:
        dateString += "Nov";
        break;

    case Calendar.DECEMBER:
        dateString += "Dec";
        break;
    }
    dateString += " ";

    //Year
    dateString += rightNow.get(Calendar.YEAR);
    dateString += " ";

    //Time
    String tHour = Integer.toString(rightNow.get(Calendar.HOUR_OF_DAY));
    if (tHour.length() == 1) {
        tHour = "0" + tHour;
    }

    String tMinute = Integer.toString(rightNow.get(Calendar.MINUTE));
    if (tMinute.length() == 1) {
        tMinute = "0" + tMinute;
    }

    String tSecond = Integer.toString(rightNow.get(Calendar.SECOND));
    if (tSecond.length() == 1) {
        tSecond = "0" + tSecond;
    }

    dateString += tHour + ":" + tMinute + ":" + tSecond + " ";

    //TimeZone Correction
    String tzSign = new String();
    String tzHours = new String();
    String tzMinutes = new String();

    final TimeZone thisTZ = rightNow.getTimeZone();
    int tzOffset = thisTZ.getOffset(rightNow.getTime().getTime()); //get timezone offset in milliseconds
    tzOffset = (tzOffset / 1000); //convert to seconds
    tzOffset = (tzOffset / 60); //convert to minutes

    //Sign
    if (tzOffset > 1) {
        tzSign = "+";
    } else {
        tzSign = "-";
        tzOffset *= -1;
    }

    //Calc Hours and Minutes?
    if (tzOffset >= 60) {
        //Minutes and Hours
        tzHours += (tzOffset / 60); //hours

        // do we need to prepend a 0
        if (tzHours.length() == 1) {
            tzHours = "0" + tzHours;
        }

        tzMinutes += (tzOffset % 60); //minutes

        // do we need to prepend a 0
        if (tzMinutes.length() == 1) {
            tzMinutes = "0" + tzMinutes;
        }
    } else {
        //Just Minutes
        tzHours = "00";
        tzMinutes += tzOffset;
        // do we need to prepend a 0
        if (tzMinutes.length() == 1) {
            tzMinutes = "0" + tzMinutes;
        }
    }

    dateString += tzSign + tzHours + tzMinutes;

    return dateString;
}

From source file:freemarker.ext.dump.DumpDirectiveTest.java

private Map<String, Object> getJaneSmithExpectedDump(int exposureLevel) {

    Map<String, Object> expectedDump = new HashMap<String, Object>();

    Map<String, Object> supervisorExpectedDump = new HashMap<String, Object>();
    supervisorExpectedDump.put(Key.VALUE.toString(), Value.NULL.toString());

    SortedMap<String, Object> propertiesExpectedDump = new TreeMap<String, Object>();

    // Properties 
    if (exposureLevel < BeansWrapper.EXPOSE_NOTHING) {

        Map<String, Object> birthdateExpectedDump = new HashMap<String, Object>();
        birthdateExpectedDump.put(Key.TYPE.toString(), Type.DATE);
        birthdateExpectedDump.put(Key.DATE_TYPE.toString(), DateType.UNKNOWN);
        Calendar c = Calendar.getInstance();
        c.set(1975, Calendar.OCTOBER, 25);
        c = DateUtils.truncate(c, Calendar.DATE);
        birthdateExpectedDump.put(Key.VALUE.toString(), c.getTime());
        propertiesExpectedDump.put("birthdate", birthdateExpectedDump);

        Map<String, Object> fullNameExpectedDump = new HashMap<String, Object>();
        fullNameExpectedDump.put(Key.TYPE.toString(), Type.STRING);
        fullNameExpectedDump.put(Key.VALUE.toString(), "Jane Smith");
        propertiesExpectedDump.put("fullName", fullNameExpectedDump);

        Map<String, Object> idExpectedDump = new HashMap<String, Object>();
        idExpectedDump.put(Key.TYPE.toString(), Type.NUMBER);
        idExpectedDump.put(Key.VALUE.toString(), 78234);
        propertiesExpectedDump.put("id", idExpectedDump);

        Map<String, Object> nicknameExpectedDump = new HashMap<String, Object>();
        nicknameExpectedDump.put(Key.TYPE.toString(), Type.STRING);
        nicknameExpectedDump.put(Key.VALUE.toString(), "");
        propertiesExpectedDump.put("nickname", nicknameExpectedDump);

        Map<String, Object> middleNameExpectedDump = new HashMap<String, Object>();
        middleNameExpectedDump.put(Key.VALUE.toString(), Value.NULL.toString());
        propertiesExpectedDump.put("middleName", middleNameExpectedDump);

        Map<String, Object> marriedExpectedDump = new HashMap<String, Object>();
        marriedExpectedDump.put(Key.TYPE.toString(), Type.BOOLEAN);
        marriedExpectedDump.put(Key.VALUE.toString(), true);
        propertiesExpectedDump.put("married", marriedExpectedDump);

        propertiesExpectedDump.put("supervisor", supervisorExpectedDump);

        Map<String, Object> favoriteColorsExpectedDump = new HashMap<String, Object>();
        favoriteColorsExpectedDump.put(Key.TYPE.toString(), Type.SEQUENCE);
        List<Map<String, Object>> favoriteColorListExpectedDump = new ArrayList<Map<String, Object>>();
        Map<String, Object> color1ExpectedDump = new HashMap<String, Object>();
        color1ExpectedDump.put(Key.TYPE.toString(), Type.STRING);
        color1ExpectedDump.put(Key.VALUE.toString(), "red");
        favoriteColorListExpectedDump.add(color1ExpectedDump);
        Map<String, Object> color2ExpectedDump = new HashMap<String, Object>();
        color2ExpectedDump.put(Key.TYPE.toString(), Type.STRING);
        color2ExpectedDump.put(Key.VALUE.toString(), "orange");
        favoriteColorListExpectedDump.add(color2ExpectedDump);
        favoriteColorsExpectedDump.put(Key.VALUE.toString(), favoriteColorListExpectedDump);
        propertiesExpectedDump.put("favoriteColors", favoriteColorsExpectedDump);

        //            Map<String, Object> degreesExpectedDump = new HashMap<String, Object>();
        //            degreesExpectedDump.put(Key.VALUE.toString(), Value.NULL.toString());
        //            propertiesExpectedDump.put("degrees", degreesExpectedDump);            
    }// w ww  .  j  av  a  2  s.  co  m
    expectedDump.put(Key.PROPERTIES.toString(), propertiesExpectedDump);

    // Methods
    SortedMap<String, Object> methodDump = getEmployeeMethodsExpectedDump(exposureLevel, "Smith");
    if (!methodDump.isEmpty()) {
        methodDump.put("boss()", supervisorExpectedDump);
    }
    expectedDump.put(Key.METHODS.toString(), methodDump);

    return expectedDump;
}

From source file:org.sakaiproject.sitestats.impl.chart.ChartServiceImpl.java

private Map<Integer, String> getMonthNamesMap() {
    monthNamesMap = new HashMap<Integer, String>();
    monthNamesMap.put(Calendar.JANUARY, msgs.getString("mo_jan"));
    monthNamesMap.put(Calendar.FEBRUARY, msgs.getString("mo_feb"));
    monthNamesMap.put(Calendar.MARCH, msgs.getString("mo_mar"));
    monthNamesMap.put(Calendar.APRIL, msgs.getString("mo_apr"));
    monthNamesMap.put(Calendar.MAY, msgs.getString("mo_may"));
    monthNamesMap.put(Calendar.JUNE, msgs.getString("mo_jun"));
    monthNamesMap.put(Calendar.JULY, msgs.getString("mo_jul"));
    monthNamesMap.put(Calendar.AUGUST, msgs.getString("mo_ago"));
    monthNamesMap.put(Calendar.SEPTEMBER, msgs.getString("mo_sep"));
    monthNamesMap.put(Calendar.OCTOBER, msgs.getString("mo_oct"));
    monthNamesMap.put(Calendar.NOVEMBER, msgs.getString("mo_nov"));
    monthNamesMap.put(Calendar.DECEMBER, msgs.getString("mo_dec"));
    return monthNamesMap;
}

From source file:org.apache.myfaces.custom.calendar.HtmlCalendarRenderer.java

public static String[] mapMonths(DateFormatSymbols symbols) {
    String[] months = new String[12];

    String[] localeMonths = symbols.getMonths();

    months[0] = localeMonths[Calendar.JANUARY];
    months[1] = localeMonths[Calendar.FEBRUARY];
    months[2] = localeMonths[Calendar.MARCH];
    months[3] = localeMonths[Calendar.APRIL];
    months[4] = localeMonths[Calendar.MAY];
    months[5] = localeMonths[Calendar.JUNE];
    months[6] = localeMonths[Calendar.JULY];
    months[7] = localeMonths[Calendar.AUGUST];
    months[8] = localeMonths[Calendar.SEPTEMBER];
    months[9] = localeMonths[Calendar.OCTOBER];
    months[10] = localeMonths[Calendar.NOVEMBER];
    months[11] = localeMonths[Calendar.DECEMBER];

    return months;
}

From source file:org.apache.myfaces.custom.calendar.HtmlCalendarRenderer.java

public static String[] mapShortMonths(DateFormatSymbols symbols) {
    String[] months = new String[12];

    String[] localeMonths = symbols.getShortMonths();

    months[0] = localeMonths[Calendar.JANUARY];
    months[1] = localeMonths[Calendar.FEBRUARY];
    months[2] = localeMonths[Calendar.MARCH];
    months[3] = localeMonths[Calendar.APRIL];
    months[4] = localeMonths[Calendar.MAY];
    months[5] = localeMonths[Calendar.JUNE];
    months[6] = localeMonths[Calendar.JULY];
    months[7] = localeMonths[Calendar.AUGUST];
    months[8] = localeMonths[Calendar.SEPTEMBER];
    months[9] = localeMonths[Calendar.OCTOBER];
    months[10] = localeMonths[Calendar.NOVEMBER];
    months[11] = localeMonths[Calendar.DECEMBER];

    return months;
}

From source file:org.jfree.chart.demo.JFreeChartDemoBase.java

/**
 * Creates a sample dataset for a Gantt chart.
 *
 * @return The dataset.//from  ww  w.  ja  v a2  s  .co m
 *
 * @deprecated Moved to the demo applications that require it.
 */
private static IntervalCategoryDataset createGanttDataset1() {

    final TaskSeries s1 = new TaskSeries("Scheduled");
    s1.add(new Task("Write Proposal",
            new SimpleTimePeriod(date(1, Calendar.APRIL, 2001), date(5, Calendar.APRIL, 2001))));
    s1.add(new Task("Obtain Approval",
            new SimpleTimePeriod(date(9, Calendar.APRIL, 2001), date(9, Calendar.APRIL, 2001))));
    s1.add(new Task("Requirements Analysis",
            new SimpleTimePeriod(date(10, Calendar.APRIL, 2001), date(5, Calendar.MAY, 2001))));
    s1.add(new Task("Design Phase",
            new SimpleTimePeriod(date(6, Calendar.MAY, 2001), date(30, Calendar.MAY, 2001))));
    s1.add(new Task("Design Signoff",
            new SimpleTimePeriod(date(2, Calendar.JUNE, 2001), date(2, Calendar.JUNE, 2001))));
    s1.add(new Task("Alpha Implementation",
            new SimpleTimePeriod(date(3, Calendar.JUNE, 2001), date(31, Calendar.JULY, 2001))));
    s1.add(new Task("Design Review",
            new SimpleTimePeriod(date(1, Calendar.AUGUST, 2001), date(8, Calendar.AUGUST, 2001))));
    s1.add(new Task("Revised Design Signoff",
            new SimpleTimePeriod(date(10, Calendar.AUGUST, 2001), date(10, Calendar.AUGUST, 2001))));
    s1.add(new Task("Beta Implementation",
            new SimpleTimePeriod(date(12, Calendar.AUGUST, 2001), date(12, Calendar.SEPTEMBER, 2001))));
    s1.add(new Task("Testing",
            new SimpleTimePeriod(date(13, Calendar.SEPTEMBER, 2001), date(31, Calendar.OCTOBER, 2001))));
    s1.add(new Task("Final Implementation",
            new SimpleTimePeriod(date(1, Calendar.NOVEMBER, 2001), date(15, Calendar.NOVEMBER, 2001))));
    s1.add(new Task("Signoff",
            new SimpleTimePeriod(date(28, Calendar.NOVEMBER, 2001), date(30, Calendar.NOVEMBER, 2001))));

    final TaskSeries s2 = new TaskSeries("Actual");
    s2.add(new Task("Write Proposal",
            new SimpleTimePeriod(date(1, Calendar.APRIL, 2001), date(5, Calendar.APRIL, 2001))));
    s2.add(new Task("Obtain Approval",
            new SimpleTimePeriod(date(9, Calendar.APRIL, 2001), date(9, Calendar.APRIL, 2001))));
    s2.add(new Task("Requirements Analysis",
            new SimpleTimePeriod(date(10, Calendar.APRIL, 2001), date(15, Calendar.MAY, 2001))));
    s2.add(new Task("Design Phase",
            new SimpleTimePeriod(date(15, Calendar.MAY, 2001), date(17, Calendar.JUNE, 2001))));
    s2.add(new Task("Design Signoff",
            new SimpleTimePeriod(date(30, Calendar.JUNE, 2001), date(30, Calendar.JUNE, 2001))));
    s2.add(new Task("Alpha Implementation",
            new SimpleTimePeriod(date(1, Calendar.JULY, 2001), date(12, Calendar.SEPTEMBER, 2001))));
    s2.add(new Task("Design Review",
            new SimpleTimePeriod(date(12, Calendar.SEPTEMBER, 2001), date(22, Calendar.SEPTEMBER, 2001))));
    s2.add(new Task("Revised Design Signoff",
            new SimpleTimePeriod(date(25, Calendar.SEPTEMBER, 2001), date(27, Calendar.SEPTEMBER, 2001))));
    s2.add(new Task("Beta Implementation",
            new SimpleTimePeriod(date(27, Calendar.SEPTEMBER, 2001), date(30, Calendar.OCTOBER, 2001))));
    s2.add(new Task("Testing",
            new SimpleTimePeriod(date(31, Calendar.OCTOBER, 2001), date(17, Calendar.NOVEMBER, 2001))));
    s2.add(new Task("Final Implementation",
            new SimpleTimePeriod(date(18, Calendar.NOVEMBER, 2001), date(5, Calendar.DECEMBER, 2001))));
    s2.add(new Task("Signoff",
            new SimpleTimePeriod(date(10, Calendar.DECEMBER, 2001), date(11, Calendar.DECEMBER, 2001))));

    final TaskSeriesCollection collection = new TaskSeriesCollection();
    collection.add(s1);
    collection.add(s2);

    return collection;
}

From source file:com.icesoft.faces.component.selectinputdate.SelectInputDateRenderer.java

/**
 * @param symbols/*ww  w .  j  av  a  2s.co  m*/
 * @return months - String[] containing localized month names
 */
public static String[] mapMonths(DateFormatSymbols symbols) {
    String[] months = new String[12];

    String[] localeMonths = symbols.getMonths();

    months[0] = localeMonths[Calendar.JANUARY];
    months[1] = localeMonths[Calendar.FEBRUARY];
    months[2] = localeMonths[Calendar.MARCH];
    months[3] = localeMonths[Calendar.APRIL];
    months[4] = localeMonths[Calendar.MAY];
    months[5] = localeMonths[Calendar.JUNE];
    months[6] = localeMonths[Calendar.JULY];
    months[7] = localeMonths[Calendar.AUGUST];
    months[8] = localeMonths[Calendar.SEPTEMBER];
    months[9] = localeMonths[Calendar.OCTOBER];
    months[10] = localeMonths[Calendar.NOVEMBER];
    months[11] = localeMonths[Calendar.DECEMBER];

    return months;
}

From source file:org.celllife.idart.gui.patient.AddPatient.java

/**
 * checks if the given date is valid// w  ww .ja  v a 2 s .  c  o m
 * 
 * @param strDay
 *            String
 * @param strMonth
 *            String
 * @param strYear
 *            String
 * @return true if the date is valid else false
 */
public boolean dateOkay(String strDay, String strMonth, String strYear) {

    boolean result = false;

    try {

        int day = Integer.parseInt(strDay);

        // check the year
        if (strYear.length() != 4)
            return result;
        int year = Integer.parseInt(strYear);

        // get the int value for the string month (e.g. January)
        // int month = Integer.parseInt(strMonth);
        int month = -1;
        for (int i = 0; i < cmbDOBMonth.getItemCount(); i++) {
            if (strMonth.equals(cmbDOBMonth.getItem(i))) {
                month = i;
            }
        }

        switch (month) {
        case -1:
            result = false;
            break;
        case Calendar.FEBRUARY:
            if (day <= 29) {
                GregorianCalendar greg = new GregorianCalendar();
                if (day == 29 & greg.isLeapYear(year)) {
                    result = true;
                } else {
                    if (day == 29) {
                        result = false;
                    } else {
                        result = true;
                    }
                }
            } else {
                result = false;
            }
            break;
        case Calendar.JANUARY | Calendar.MARCH | Calendar.MAY | Calendar.JULY | Calendar.AUGUST
                | Calendar.OCTOBER | Calendar.DECEMBER:
            if (day <= 31) {
                result = true;
            } else {
                result = false;
            }
            break;
        default:
            result = true;
            break;
        }
    } catch (RuntimeException e) {
        e.printStackTrace();
    }

    return result;

}

From source file:org.motechproject.server.ws.RegistrarServiceTest.java

@Test
public void queryUpcomingCare() throws ValidationException {
    Integer staffId = 1, facilityId = 2, motechId = 3;

    List<ExpectedEncounter> expectedEncounters = new ArrayList<ExpectedEncounter>();
    List<ExpectedObs> expectedObs = new ArrayList<ExpectedObs>();

    Calendar calendar = Calendar.getInstance();

    Care encounterCare1 = new Care();
    encounterCare1.setName("EncounterCare1");
    calendar.set(2010, Calendar.APRIL, 4);
    encounterCare1.setDate(calendar.getTime());
    Care encounterCare2 = new Care();
    encounterCare2.setName("EncounterCare2");
    calendar.set(2010, Calendar.DECEMBER, 12);
    encounterCare2.setDate(calendar.getTime());
    Care obsCare1 = new Care();
    obsCare1.setName("ObsCare1");
    calendar.set(2010, Calendar.OCTOBER, 10);
    obsCare1.setDate(calendar.getTime());
    Care obsCare2 = new Care();
    obsCare2.setName("ObsCare2");
    calendar.set(2010, Calendar.JANUARY, 1);
    obsCare2.setDate(calendar.getTime());
    Care[] upcomingCares = { obsCare2, encounterCare1, obsCare1, encounterCare2 };

    org.openmrs.Patient patient = new org.openmrs.Patient(1);

    expect(registrarBean.isValidIdCheckDigit(staffId)).andReturn(true);
    expect(openmrsBean.getStaffBySystemId(staffId.toString())).andReturn(new User(1));
    expect(registrarBean.isValidIdCheckDigit(facilityId)).andReturn(true);
    expect(registrarBean.getFacilityById(facilityId)).andReturn(new Facility());
    expect(registrarBean.isValidMotechIdCheckDigit(motechId)).andReturn(true);
    expect(openmrsBean.getPatientByMotechId(motechId.toString())).andReturn(patient);
    expect(patientModelConverter.patientToWebService(eq(patient), eq(true))).andReturn(new Patient());

    expect(registrarBean.getUpcomingExpectedEncounters(patient)).andReturn(expectedEncounters);
    expect(registrarBean.getUpcomingExpectedObs(patient)).andReturn(expectedObs);
    expect(careModelConverter.upcomingToWebServiceCares(expectedEncounters, expectedObs, false))
            .andReturn(upcomingCares);//from   w w  w.j av  a  2s. c o  m

    replay(registrarBean, patientModelConverter, openmrsBean, careModelConverter);

    Patient wsPatient = regWs.queryUpcomingCare(staffId, facilityId, motechId);

    verify(registrarBean, patientModelConverter, openmrsBean, careModelConverter);
    verify(registrarBean, patientModelConverter, openmrsBean, careModelConverter);

    assertNotNull("Patient result is null", wsPatient);
    Care[] cares = wsPatient.getCares();
    assertNotNull("Patient cares is null", cares);
    assertEquals(4, cares.length);
    assertEquals(obsCare2.getName(), cares[0].getName());
    assertEquals(obsCare2.getDate(), cares[0].getDate());
    assertEquals(encounterCare1.getName(), cares[1].getName());
    assertEquals(encounterCare1.getDate(), cares[1].getDate());
    assertEquals(obsCare1.getName(), cares[2].getName());
    assertEquals(obsCare1.getDate(), cares[2].getDate());
    assertEquals(encounterCare2.getName(), cares[3].getName());
    assertEquals(encounterCare2.getDate(), cares[3].getDate());
}