net.time4j.format.TextWidth Maven / Gradle / Ivy
/*
* -----------------------------------------------------------------------
* Copyright © 2013-2015 Meno Hochschild,
* -----------------------------------------------------------------------
* This file (TextWidth.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 the width of a formatted output of chronological element values
* as text.
*
* @author Meno Hochschild
*/
/*[deutsch]
* Definiert die Breite einer formatierten Ausgabe von chronologischen
* Elementwerten als Text.
*
* @author Meno Hochschild
*/
public enum TextWidth {
//~ Statische Felder/Initialisierungen --------------------------------
/** Full text width. */
/*[deutsch] Volle Textbreite. */
WIDE,
/** Abbreviation (long form). */
/*[deutsch] Abkürzung (Langform). */
ABBREVIATED,
/**
* Abbreviation (short form - usually identical with {@link #ABBREVIATED}).
*/
/*[deutsch]
* Abkürzung (Kurzform - meist identisch mit {@link #ABBREVIATED}).
*/
SHORT,
/** Symbol form (typically only one single letter). */
/*[deutsch] Symbolform (typischerweise nur ein Buchstabe). */
NARROW;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy