WIMM Labs


com.wimm.framework
Class Wimm.Settings

java.lang.Object
  extended by com.wimm.framework.Wimm.Settings
Enclosing class:
Wimm

public static class Wimm.Settings
extends Object

Keys and values for use with Settings.System.

Since:
WIMM SDK 1.0.1

Field Summary
static String ALARMS_ARE_SET
          Whether the Alarm application has any pending alarms set.
static String DATE_FORMAT
          Component order when displaying dates.
static String DATE_FORMAT_DD_MM_YY
          Day/Month/Year value for DATE_FORMAT.
static String DATE_FORMAT_DEFAULT
          The default value for DATETIME_TIMEOFFSET_MINUTES.
static String DATE_FORMAT_MM_DD_YY
          Month/Day/Year value for DATE_FORMAT.
static String DATETIME_TIMEOFFSET_MINUTES
          The number of minutes the system clock is offset from the actual time.
static int DATETIME_TIMEOFFSET_MINUTES_DEFAULT
          The default value for DATETIME_TIMEOFFSET_MINUTES.
static String DATETIME_WEEKSTARTDAY
          The first day of the week.
static int DATETIME_WEEKSTARTDAY_DEFAULT
          The default value for DATETIME_WEEKSTARTDAY.
static String DEVICE_NAME
          The name of the device as set by the user.
static String DEVICE_NAME_DEFAULT
          The default value for DEVICE_NAME.
static String HOME_LOCATION_ID
          The unique identifier for the user's primary location.
static String HOME_LOCATION_NAME
          The name of the user's primary location.
static String SYNC_INTERVAL_MINUTES
          How frequently the system will perform a sync.
static int SYNC_INTERVAL_MINUTES_DEFAULT
          The default value for SYNC_INTERVAL_MINUTES.
static String UNITS_SYSTEM
          The system to use when displaying measurement units.
static String UNITS_SYSTEM_DEFAULT
          The default value for UNITS_SYSTEM.
static String UNITS_SYSTEM_INTERNATIONAL
          Metric units for UNITS_SYSTEM.
static String UNITS_SYSTEM_US_CUSTOMARY
          American units for UNITS_SYSTEM.
 
Constructor Summary
Wimm.Settings()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEVICE_NAME

public static final String DEVICE_NAME
The name of the device as set by the user.

This value is set from the website's device settings panel.

Default value: DEVICE_NAME_DEFAULT.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

DEVICE_NAME_DEFAULT

public static final String DEVICE_NAME_DEFAULT
The default value for DEVICE_NAME.

Constant value: "WIMM One".

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

DATETIME_TIMEOFFSET_MINUTES

public static final String DATETIME_TIMEOFFSET_MINUTES
The number of minutes the system clock is offset from the actual time.

This value is set from the website's device settings panel.

Default value: DATETIME_TIMEOFFSET_MINUTES_DEFAULT.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

DATETIME_TIMEOFFSET_MINUTES_DEFAULT

public static final int DATETIME_TIMEOFFSET_MINUTES_DEFAULT
The default value for DATETIME_TIMEOFFSET_MINUTES.

Constant value: 0.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

DATE_FORMAT

public static final String DATE_FORMAT
Component order when displaying dates.

This value is set from the website's device settings panel.

Default value: DATE_FORMAT_DEFAULT.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

DATE_FORMAT_MM_DD_YY

public static final String DATE_FORMAT_MM_DD_YY
Month/Day/Year value for DATE_FORMAT.

Constant value: "MM/dd/yyyy".

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

DATE_FORMAT_DD_MM_YY

public static final String DATE_FORMAT_DD_MM_YY
Day/Month/Year value for DATE_FORMAT.

Constant value: "dd/MM/yyyy".

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

DATE_FORMAT_DEFAULT

public static final String DATE_FORMAT_DEFAULT
The default value for DATETIME_TIMEOFFSET_MINUTES.

Constant value: DATE_FORMAT_MM_DD_YY.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

DATETIME_WEEKSTARTDAY

public static final String DATETIME_WEEKSTARTDAY
The first day of the week. See Calendar.DAY_OF_WEEK.

This value is set from the website's device settings panel.

Default value: DATETIME_WEEKSTARTDAY_DEFAULT.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

DATETIME_WEEKSTARTDAY_DEFAULT

public static final int DATETIME_WEEKSTARTDAY_DEFAULT
The default value for DATETIME_WEEKSTARTDAY.

Constant value: Calendar.SUNDAY.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

HOME_LOCATION_ID

public static final String HOME_LOCATION_ID
The unique identifier for the user's primary location.

This value is set from the website's device settings panel.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

HOME_LOCATION_NAME

public static final String HOME_LOCATION_NAME
The name of the user's primary location.

This value is set from the website's device settings panel.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

UNITS_SYSTEM

public static final String UNITS_SYSTEM
The system to use when displaying measurement units.

This value is set from the website's device settings panel.

Default value: UNITS_SYSTEM_DEFAULT.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

UNITS_SYSTEM_US_CUSTOMARY

public static final String UNITS_SYSTEM_US_CUSTOMARY
American units for UNITS_SYSTEM.

Constant value: "US_CUSTOMARY".

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

UNITS_SYSTEM_INTERNATIONAL

public static final String UNITS_SYSTEM_INTERNATIONAL
Metric units for UNITS_SYSTEM.

Constant value: "INTERNATIONAL".

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

UNITS_SYSTEM_DEFAULT

public static final String UNITS_SYSTEM_DEFAULT
The default value for UNITS_SYSTEM.

Constant value: UNITS_SYSTEM_US_CUSTOMARY.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

SYNC_INTERVAL_MINUTES

public static final String SYNC_INTERVAL_MINUTES
How frequently the system will perform a sync.

This value is set from the website's device settings panel.

Default value: SYNC_INTERVAL_MINUTES_DEFAULT.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

SYNC_INTERVAL_MINUTES_DEFAULT

public static final int SYNC_INTERVAL_MINUTES_DEFAULT
The default value for SYNC_INTERVAL_MINUTES.

Constant value: 180.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values

ALARMS_ARE_SET

public static final String ALARMS_ARE_SET
Whether the Alarm application has any pending alarms set.

This value is set from the Alarm application.

Since:
WIMM SDK 1.0.1
See Also:
Constant Field Values
Constructor Detail

Wimm.Settings

public Wimm.Settings()

WIMM Labs