Example usage for java.text Format subclass-usage

List of usage examples for java.text Format subclass-usage

Introduction

In this page you can find the example usage for java.text Format subclass-usage.

Usage

From source file org.apache.logging.log4j.core.util.datetime.FastDateFormat.java

/**
 * <p>FastDateFormat is a fast and thread-safe version of
 * {@link java.text.SimpleDateFormat}.</p>
 *
 * <p>To obtain an instance of FastDateFormat, use one of the static factory methods: 
 * {@link #getInstance(String, TimeZone, Locale)}, {@link #getDateInstance(int, TimeZone, Locale)}, 

From source file com.anrisoftware.globalpom.format.degree.DegreeSexagesimalFormat.java

/**
 * Parses angle degree sexagesimal.
 * 
 * @author Erwin Mueller, erwin.mueller@deventm.org
 * @since 1.9
 */

From source file StringAlignDemo.java

/** Bare-minimum String formatter (string aligner).
 * XXX When 1.5 is common, change from ints to enum for alignment.
 */
class StringAlign extends Format {
    /* Constant for left justification. */
    public static final int JUST_LEFT = 'l';

From source file com.vityuk.ginger.provider.format.JodaTimeUtils.java

class JdkAndJodaDateFormat extends Format {
    private static final long serialVersionUID = 6416075043432410869L;

    private final DateFormat jdkFormatter;
    private final DateTimeFormatter jodaFormatter;

From source file com.projity.grouping.core.OutlineCode.java

/**
 * Class used in converting outline codes to hierarchy
 */
public class OutlineCode extends Format {
    static final int NUMBERS = 0;
    static final int UPPERCASE_LETTERS = 1;

From source file org.streets.commons.util.FastDateFormat.java

/**
 * <p>FastDateFormat is a fast and thread-safe version of
 * {@link java.text.SimpleDateFormat}.</p>
 *
 * <p>This class can be used as a direct replacement to
 * <code>SimpleDateFormat</code> in most formatting situations.

From source file Unsigned.java

/**
 * This class allows a number to be easily formatted as a binary number. The
 * representation uses 1's and 0's.
 * 
 * @author Jesse Peterson <jesse@jpeterson.com>
 * 

From source file DateFormatUtils.java

/**
 * <p>FastDateFormat is a fast and thread-safe version of
 * {@link java.text.SimpleDateFormat}.</p>
 * 
 * <p>This class can be used as a direct replacement to
 * <code>SimpleDateFormat</code> in most formatting situations.