1/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.contacts.common.util;
18
19import java.text.SimpleDateFormat;
20import java.util.Locale;
21
22/** Common date utilities. */
23public class CommonDateUtils {
24
25  // All the SimpleDateFormats in this class use the UTC timezone
26  public static final SimpleDateFormat NO_YEAR_DATE_FORMAT =
27      new SimpleDateFormat("--MM-dd", Locale.US);
28  public static final SimpleDateFormat FULL_DATE_FORMAT =
29      new SimpleDateFormat("yyyy-MM-dd", Locale.US);
30  public static final SimpleDateFormat DATE_AND_TIME_FORMAT =
31      new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.US);
32  public static final SimpleDateFormat NO_YEAR_DATE_AND_TIME_FORMAT =
33      new SimpleDateFormat("--MM-dd'T'HH:mm:ss.SSS'Z'", Locale.US);
34
35  /** Exchange requires 8:00 for birthdays */
36  public static final int DEFAULT_HOUR = 8;
37}
38