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

net.time4j.format.OutputContext Maven / Gradle / Ivy

There is a newer version: 4.38
Show newest version
/*
 * -----------------------------------------------------------------------
 * Copyright © 2013-2015 Meno Hochschild, 
 * -----------------------------------------------------------------------
 * This file (OutputContext.java) is part of project Time4J.
 *
 * Time4J is free software: You can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation, either version 2.1 of the License, or
 * (at your option) any later version.
 *
 * Time4J 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Time4J. If not, see .
 * -----------------------------------------------------------------------
 */

package net.time4j.format;


/**
 * 

Determines in which output context the formatting is to be performed.

* * @author Meno Hochschild * @see Attributes#OUTPUT_CONTEXT */ /*[deutsch] *

Definiert, in welchem Ausgabekontext eine Formatierung erfolgen soll.

* * @author Meno Hochschild * @see Attributes#OUTPUT_CONTEXT */ public enum OutputContext { //~ Statische Felder/Initialisierungen -------------------------------- /** *

Standard format context (for example weekday names within a * formatted calendar date).

*/ /*[deutsch] *

Standardformatierung (zum Beispiel Wochentagsnamen in einer * formatierten Datumsausgabe).

*/ FORMAT, /** *

Stand-alone-output (for example weekday names as column headers in * a month calendar).

*/ /*[deutsch] *

Alleinstehende Ausgabe (zum Beispiel Wochentagsnamen als * Spaltenüberschriften in einer Monatstabelle).

*/ STANDALONE; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy