Java Date Format Pattern getMMdd()

Here you can find the source of getMMdd()

Description

get M Mdd

License

Open Source License

Return

SimpleDateFormat

Declaration

public static SimpleDateFormat getMMdd() 

Method Source Code

//package com.java2s;
/*/*from ww  w .j  a va  2 s  . c om*/
 * Copyright (C) 2010 Viettel Telecom. All rights reserved.
 * VIETTEL PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

import java.text.SimpleDateFormat;

public class Main {
    /**
     *
     * @return SimpleDateFormat
     */
    public static SimpleDateFormat getMMdd() {
        SimpleDateFormat mmdd = new SimpleDateFormat("MM/dd");
        return mmdd;
    }
}

Related

  1. getHeaderFormat()
  2. getLenientFormat(String format)
  3. getMM()
  4. getMM(Date date)
  5. getMM(String strDate)
  6. getMMDDYYHHMM()
  7. getMMDDYYYY(final Date date, final String separator)
  8. getMomentFormatter()
  9. getPooledSDF(String format)