package android.text.format; /* * #%L * Matos * $Id:$ * $HeadURL:$ * %% * Copyright (C) 2010 - 2014 Orange SA * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ @com.francetelecom.rd.stubs.annotation.ClassDone(0) public class DateFormat { // Fields public static final char QUOTE = '\''; public static final char AM_PM = 'a'; public static final char CAPITAL_AM_PM = 'A'; public static final char DATE = 'd'; public static final char DAY = 'E'; public static final char HOUR = 'h'; public static final char HOUR_OF_DAY = 'k'; public static final char MINUTE = 'm'; public static final char MONTH = 'M'; public static final char SECONDS = 's'; public static final char TIME_ZONE = 'z'; public static final char YEAR = 'y'; // Constructors public DateFormat(){ } // Methods public static final java.lang.CharSequence format(java.lang.CharSequence arg1, long arg2){ return (java.lang.CharSequence) null; } public static final java.lang.CharSequence format(java.lang.CharSequence arg1, java.util.Date arg2){ return (java.lang.CharSequence) null; } public static final java.lang.CharSequence format(java.lang.CharSequence arg1, java.util.Calendar arg2){ return (java.lang.CharSequence) null; } public static final java.text.DateFormat getDateFormat(android.content.Context arg1){ return (java.text.DateFormat) null; } public static final java.text.DateFormat getTimeFormat(android.content.Context arg1){ return (java.text.DateFormat) null; } public static boolean is24HourFormat(android.content.Context arg1){ return false; } public static java.text.DateFormat getDateFormatForSetting(android.content.Context arg1, java.lang.String arg2){ return (java.text.DateFormat) null; } public static final java.text.DateFormat getLongDateFormat(android.content.Context arg1){ return (java.text.DateFormat) null; } public static final java.text.DateFormat getMediumDateFormat(android.content.Context arg1){ return (java.text.DateFormat) null; } public static final char [] getDateFormatOrder(android.content.Context arg1){ return (char []) null; } }