Java Time Format getFullDateTimeFormat()

Here you can find the source of getFullDateTimeFormat()

Description

Gets the full datetime formatter.

License

Open Source License

Declaration

public static DateFormat getFullDateTimeFormat() 

Method Source Code

//package com.java2s;
/*//from   w w w. ja  v a2s  .  c o m
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.text.DateFormat;

public class Main {
    /** A full datetime format. */
    private static DateFormat FULL_DATETIME_FORMAT;

    /** Gets the full datetime formatter. */
    public static DateFormat getFullDateTimeFormat() {
        return FULL_DATETIME_FORMAT;
    }
}

Related

  1. getFormattedTimeFilesafe(long t)
  2. getFormattedTimeString(double s)
  3. getFormatTime(Date date)
  4. getFormatTime(String format)
  5. getFormatTimeString(Date date, String pattern)
  6. getFullTime(String format, Date date)
  7. getGenerationTime(String format)
  8. getIntegerDateTime(Date date, String dateFormat)
  9. getShowTime(Date date, String format)