datepicker
Class DatePickerFactors

java.lang.Object
  extended by datepicker.DatePickerFactors

public class DatePickerFactors
extends java.lang.Object

This class provides a number of static entities used by other DatePicker classes, such as the names of days and months for different national languages.


Field Summary
static java.lang.String[] EN_DAYS
          Defines shortened days of week in English.
static java.lang.String[] EN_MONTHS
          Defines the months in English.
static int ENGLISH
          Orders the date picker to show the days of the week and months in English
static int EU_FMT
          Orders a date string to be returned in European format yyyy-MM-dd.
static java.lang.String[] GE_DAYS
          Defines shortened days of week in German.
static java.lang.String[] GE_MONTHS
          Defines the months in German.
static int GERMAN
          Orders the date picker to show the days of the week and months in German
static java.lang.String[] SV_DAYS
          Defines shortened days of week in Swedish.
static java.lang.String[] SV_MONTHS
          Defines the months in Swedish.
static int SWEDISH
          Orders the date picker to show the days of the week and months in Swedish
static int TH_FMT
          Orders a date string to be returned in Thai format dd.mm.yyyy.
static int UK_FMT
          Orders a date string to be returned in UK format dd/MM/yyyy.
static int US_FMT
          Orders a date string to be returned in US format MM/dd/yyyy.
 
Constructor Summary
DatePickerFactors()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SV_MONTHS

public static final java.lang.String[] SV_MONTHS
Defines the months in Swedish.


GE_MONTHS

public static final java.lang.String[] GE_MONTHS
Defines the months in German.


EN_MONTHS

public static final java.lang.String[] EN_MONTHS
Defines the months in English.


SV_DAYS

public static final java.lang.String[] SV_DAYS
Defines shortened days of week in Swedish.


GE_DAYS

public static final java.lang.String[] GE_DAYS
Defines shortened days of week in German.


EN_DAYS

public static final java.lang.String[] EN_DAYS
Defines shortened days of week in English.


EU_FMT

public static final int EU_FMT
Orders a date string to be returned in European format yyyy-MM-dd.

See Also:
Constant Field Values

UK_FMT

public static final int UK_FMT
Orders a date string to be returned in UK format dd/MM/yyyy.

See Also:
Constant Field Values

US_FMT

public static final int US_FMT
Orders a date string to be returned in US format MM/dd/yyyy.

See Also:
Constant Field Values

TH_FMT

public static final int TH_FMT
Orders a date string to be returned in Thai format dd.mm.yyyy. Note: Not currently implemented.

See Also:
Constant Field Values

SWEDISH

public static final int SWEDISH
Orders the date picker to show the days of the week and months in Swedish

See Also:
Constant Field Values

ENGLISH

public static final int ENGLISH
Orders the date picker to show the days of the week and months in English

See Also:
Constant Field Values

GERMAN

public static final int GERMAN
Orders the date picker to show the days of the week and months in German

See Also:
Constant Field Values
Constructor Detail

DatePickerFactors

public DatePickerFactors()