Home | History | Annotate | Download | only in util
      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 
     17 package com.android.contacts.common.util;
     18 
     19 import java.text.SimpleDateFormat;
     20 import java.util.Locale;
     21 
     22 /**
     23  * Common date utilities.
     24  */
     25 public 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);
     36 
     37     /**
     38      * Exchange requires 8:00 for birthdays
     39      */
     40     public final static int DEFAULT_HOUR = 8;
     41 }
     42