Java Calendar to String calendarToString(Calendar cal)

Here you can find the source of calendarToString(Calendar cal)

Description

net.ajaskey.market.ta.printCalendar

License

Open Source License

Parameter

Parameter Description
cal a parameter

Declaration

public static String calendarToString(Calendar cal) 

Method Source Code

//package com.java2s;
/**/*  w  w  w. java2s  .c om*/
 *
 * This class contains static utility methods used by this project.
 *
 * @author Andy Askey
 *         <p>
 *         PTV-Parser Copyright (c) 2015, Andy Askey. All rights reserved.
 *         </p>
 *         <p>
 *         Permission is hereby granted, free of charge, to any person obtaining
 *         a copy of this software and associated documentation files (the
 *         "Software"), to deal in the Software without restriction, including
 *         without limitation the rights to use, copy, modify, merge, publish,
 *         distribute, sublicense, and/or sell copies of the Software, and to
 *         permit persons to whom the Software is furnished to do so, subject to
 *         the following conditions:
 *
 *         The above copyright notice and this permission notice shall be
 *         included in all copies or substantial portions of the Software.
 *         </p>
 *
 *         <p>
 *         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *         EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *         MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *         NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 *         BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 *         ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 *         CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 *         SOFTWARE.
 *         </p>
 *
 */

import java.util.Calendar;

public class Main {
    /**
     * net.ajaskey.market.ta.printCalendar
     *
     * @param cal
     */
    public static String calendarToString(Calendar cal) {
        String ret = cal.toString() + "\n";
        ret += "  Year         : " + cal.get(Calendar.YEAR) + "\n";
        ret += "  Month        : " + cal.get(Calendar.MONTH) + "\n";
        ret += "  Day of Month : " + cal.get(Calendar.DAY_OF_MONTH) + "\n";
        ret += "  Day of Year  : " + cal.get(Calendar.DAY_OF_YEAR) + "\n";
        ret += "  Week of Year : " + cal.get(Calendar.WEEK_OF_YEAR) + "\n";
        return ret;

    }
}

Related

  1. calendarToSiteDataString(final Calendar cal)
  2. calendarToStorageRoomTimeString(Calendar cal)
  3. calendarToString(Calendar c)
  4. calendarToString(Calendar c, String format)
  5. calendarToString(Calendar cal)
  6. calendarToString(Calendar cal, String format)
  7. calendarToString(Calendar calendar)
  8. calendarToString(Calendar calendar)
  9. calendarToString(Calendar calendar)