Java Date Format ISO getIso8601DayDateFormat()

Here you can find the source of getIso8601DayDateFormat()

Description

get Iso Day Date Format

License

Apache License

Declaration

public static SimpleDateFormat getIso8601DayDateFormat() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.text.SimpleDateFormat;

public class Main {
    private static final String formatIso8601Day = "yyyy-MM-dd";

    public static SimpleDateFormat getIso8601DayDateFormat() {
        return new SimpleDateFormat(formatIso8601Day);
    }//from  w  w w.j a  va 2 s.  c  o m
}

Related

  1. getISO8601DateFormat()
  2. getIso8601DateFormat()
  3. getISO8601DateFormat(TimeZone tz, String mask)
  4. getISO8601DateString(Date d)
  5. getIso8601DateString(long timestampWithMilliseconds)
  6. getISO8601FormatDate(String in)
  7. getIso8601String(Date d)
  8. getISO8601String(Date date)
  9. getISO8601String(Date date)