Java Year Format formatUniversalMonthYear(Date date)

Here you can find the source of formatUniversalMonthYear(Date date)

Description

format Universal Month Year

License

Open Source License

Declaration

public static String formatUniversalMonthYear(Date date) 

Method Source Code

//package com.java2s;
/**/*w ww .j a  va2 s  . c om*/
 * ====================================================================
 * UPA (Unstructured Persistence API)
 * Yet another ORM Framework
 * ++++++++++++++++++++++++++++++++++
 * Unstructured Persistence API, referred to as UPA, is a genuine effort
 * to raise programming language frameworks managing relational data in
 * applications using Java Platform, Standard Edition and Java Platform,
 * Enterprise Edition and Dot Net Framework equally to the next level of
 * handling ORM for mutable data structures. UPA is intended to provide
 * a solid reflection mechanisms to the mapped data structures while
 * affording to make changes at runtime of those data structures.
 * Besides, UPA has learned considerably of the leading ORM
 * (JPA, Hibernate/NHibernate, MyBatis and Entity Framework to name a few)
 * failures to satisfy very common even known to be trivial requirement in
 * enterprise applications.
 * <p>
 * Copyright (C) 2014-2015 Taha BEN SALAH
 * <p>
 * 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 2 of the License, or (at your option) any later
 * version.
 * <p>
 * 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.
 * <p>
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 51
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 * ====================================================================
 */

import java.text.DateFormat;

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    public static final DateFormat UNIVERSAL_MONTH_YEAR_FORMAT = new SimpleDateFormat("yyyy-MM");

    public static String formatUniversalMonthYear(Date date) {
        return UNIVERSAL_MONTH_YEAR_FORMAT.format(date);
    }
}

Related

  1. formatMmDdYyyy(final Date date)
  2. formatMonth(int timeInfo, String yearInfo)
  3. formatNanosYearGMT(long nanos)
  4. formatSlashedMmDdYy()
  5. formatTimeStampYearFirst(Date date)
  6. formatYear(Date d, Locale locale)
  7. formatYear(Date date)
  8. formatYear(Date date)
  9. formatYearMonth(Date date)