All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.logging.log4j.core.util.datetime.DatePrinter Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta2
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache license, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the license for the specific language governing permissions and
 * limitations under the license.
 */
package org.apache.logging.log4j.core.util.datetime;

import java.text.FieldPosition;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;

/**
 * Copied from Commons Lang 3.
 */
public interface DatePrinter {

    /**
     * 

Formats a millisecond {@code long} value.

* * @param millis the millisecond value to format * @return the formatted string * @since 2.1 */ String format(long millis); /** *

Formats a {@code Date} object using a {@code GregorianCalendar}.

* * @param date the date to format * @return the formatted string */ String format(Date date); /** *

Formats a {@code Calendar} object.

* The TimeZone set on the Calendar is only used to adjust the time offset. * The TimeZone specified during the construction of the Parser will determine the TimeZone * used in the formatted string. * * @param calendar the calendar to format. * @return the formatted string */ String format(Calendar calendar); /** *

Formats a milliseond {@code long} value into the * supplied {@code StringBuilder}.

* * @param millis the millisecond value to format * @param buf the buffer to format into * @return the specified string buffer */ StringBuilder format(long millis, StringBuilder buf); /** *

Formats a {@code Date} object into the * supplied {@code StringBuilder} using a {@code GregorianCalendar}.

* * @param date the date to format * @param buf the buffer to format into * @return the specified string buffer */ StringBuilder format(Date date, StringBuilder buf); /** *

Formats a {@code Calendar} object into the supplied {@code StringBuilder}.

* The TimeZone set on the Calendar is only used to adjust the time offset. * The TimeZone specified during the construction of the Parser will determine the TimeZone * used in the formatted string. * * @param calendar the calendar to format * @param buf the buffer to format into * @return the specified string buffer */ StringBuilder format(Calendar calendar, StringBuilder buf); // Accessors //----------------------------------------------------------------------- /** *

Gets the pattern used by this printer.

* * @return the pattern, {@link java.text.SimpleDateFormat} compatible */ String getPattern(); /** *

Gets the time zone used by this printer.

* *

This zone is always used for {@code Date} printing.

* * @return the time zone */ TimeZone getTimeZone(); /** *

Gets the locale used by this printer.

* * @return the locale */ Locale getLocale(); /** *

Formats a {@code Date}, {@code Calendar} or * {@code Long} (milliseconds) object.

* * See {@link java.text.DateFormat#format(Object, StringBuffer, FieldPosition)} * * @param obj the object to format * @param toAppendTo the buffer to append to * @param pos the position - ignored * @return the buffer passed in */ StringBuilder format(Object obj, StringBuilder toAppendTo, FieldPosition pos); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy