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

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

There is a newer version: 4.38
Show newest version
/*
 * -----------------------------------------------------------------------
 * Copyright © 2013-2015 Meno Hochschild, 
 * -----------------------------------------------------------------------
 * This file (DisplayMode.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;


/**
 * 

Defines how many details will be displayed in chronological texts.

* * @author Meno Hochschild */ /*[deutsch] *

Definiert Anzeigestile, wie detailliert chronologische Informationen * dargestellt werden.

* * @author Meno Hochschild */ public enum DisplayMode { //~ Statische Felder/Initialisierungen -------------------------------- /** Full display with maximum detailed content. */ /*[deutsch] Volle Anzeige mit maximalem Detailgehalt. */ FULL, /** Verbose display with many details. */ /*[deutsch] Gesprächige Anzeige mit vielen Details. */ LONG, /** Normal display with few details. */ /*[deutsch] Normale Anzeige mit wenigen Details. */ MEDIUM, /** Shortened display, typically in numerical form. */ /*[deutsch] Verkürzte Anzeige, typischerweise numerisch. */ SHORT; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy