Examples: DateSep, isDateDMY, isDateMDY, isDateYMD, Today, Tomorrow, and Yesterday properties

This agent displays the date international settings: whether the date format is DMY, MDY, or YMD; the month-day-year separator; the keywords for yesterday, today, and tomorrow.

import lotus.domino.*;
public class JavaAgent extends AgentBase {
  public void NotesMain() {
    try {
      Session session = getSession();
      AgentContext agentContext = session.getAgentContext();
      // (Your code goes here) 
      International inat = session.getInternational();
      if (inat.isDateDMY())
        System.out.println
        ("Format of date is \"DMY\"");
      if (inat.isDateMDY())
        System.out.println
        ("Format of date is \"MDY\"");
      if (inat.isDateYMD())
        System.out.println
        ("Format of date is \"YMD\"");
      System.out.println
      ("Date separator is \"" + inat.getDateSep() + "\"");
      System.out.println
      ("Text of date keywords: " +
      inat.getYesterday() + ", " +
      inat.getToday() + ", " +
      inat.getTomorrow());
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}