Java Time Format getUniversalDateTimeFormat()

Here you can find the source of getUniversalDateTimeFormat()

Description

Returns a formatter for the universal date/time format

License

Open Source License

Return

formatter for the universal date/time format

Declaration

public static SimpleDateFormat getUniversalDateTimeFormat() 

Method Source Code

//package com.java2s;
/***************************************************************
 *  This file is part of the [fleXive](R) framework.
 *
 *  Copyright (c) 1999-2014/*from  w  w w.  j a  v  a 2s.com*/
 *  UCS - unique computing solutions gmbh (http://www.ucs.at)
 *  All rights reserved
 *
 *  The [fleXive](R) project is free software; you can redistribute
 *  it and/or modify it under the terms of the GNU Lesser General Public
 *  License version 2.1 or higher as published by the Free Software Foundation.
 *
 *  The GNU Lesser General Public License can be found at
 *  http://www.gnu.org/licenses/lgpl.html.
 *  A copy is found in the textfile LGPL.txt and important notices to the
 *  license from the author are found in LICENSE.txt distributed with
 *  these libraries.
 *
 *  This library 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.
 *
 *  For further information about UCS - unique computing solutions gmbh,
 *  please see the company website: http://www.ucs.at
 *
 *  For further information about [fleXive](R), please see the
 *  project website: http://www.flexive.org
 *
 *
 *  This copyright notice MUST APPEAR in all copies of the file!
 ***************************************************************/

import java.text.SimpleDateFormat;

public class Main {
    public final static String UNIVERSAL_TIMEFORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSZ";

    /**
     * Returns a formatter for the universal date/time format
     *
     * @return formatter for the universal date/time format
     */
    public static SimpleDateFormat getUniversalDateTimeFormat() {
        return new SimpleDateFormat(UNIVERSAL_TIMEFORMAT);
    }
}

Related

  1. getTimeOnlyWithNumber()
  2. getTimeQuantum(String strDate, String format)
  3. getTimeStringFormatedForSWANWithDelim( final Object pObjTime, final String pStrDelim)
  4. getTimeSystem(String formatTime)
  5. getTwoTimeInterval(String startTime, String endTime, String format)
  6. getXsdDateTimeFormat()
  7. getXSDFormatter(DateTime date)
  8. isDateFormat(String timeString)
  9. long2Datestr(long time, String format)