blob: 6be63028f3cf9fbd30d17973326e14d07d566eec [file] [log] [blame]
Chiao Chenge88fcd32012-11-13 18:38:05 -08001/*
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
Gary Mai69c182a2016-12-05 13:07:03 -080017package com.android.contacts.util;
Chiao Chenge88fcd32012-11-13 18:38:05 -080018
19import java.text.SimpleDateFormat;
20import java.util.Locale;
21
22/**
23 * Common date utilities.
24 */
25public class CommonDateUtils {
26
27 // All the SimpleDateFormats in this class use the UTC timezone
28 public static final SimpleDateFormat NO_YEAR_DATE_FORMAT =
29 new SimpleDateFormat("--MM-dd", Locale.US);
30 public static final SimpleDateFormat FULL_DATE_FORMAT =
31 new SimpleDateFormat("yyyy-MM-dd", Locale.US);
32 public static final SimpleDateFormat DATE_AND_TIME_FORMAT =
33 new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.US);
34 public static final SimpleDateFormat NO_YEAR_DATE_AND_TIME_FORMAT =
35 new SimpleDateFormat("--MM-dd'T'HH:mm:ss.SSS'Z'", Locale.US);
Yorke Lee2644d942013-10-28 11:05:43 -070036
37 /**
38 * Exchange requires 8:00 for birthdays
39 */
40 public final static int DEFAULT_HOUR = 8;
Chiao Chenge88fcd32012-11-13 18:38:05 -080041}