Searched defs:Formatter (Results 1 - 2 of 2) sorted by path

/libcore/luni/src/main/java/java/util/
H A DFormatter.java40 * It's relatively rare to use a {@code Formatter} directly. A variety of classes offer convenience
300 * It's also possible to format dates and times with {@code Formatter}, though you should seriously
303 * The facilities offered by {@code Formatter} are low-level and place the burden of localization
519 * <p><i>Thread safety</i>. Formatter is not thread-safe.
526 public final class Formatter implements Closeable, Flushable { class in inherits:Closeable,Flushable
596 * Constructs a {@code Formatter}.
604 public Formatter() { method in class:Formatter
609 * Constructs a {@code Formatter} whose output will be written to the
616 * the output destination of the {@code Formatter}. If {@code a} is {@code null},
619 public Formatter(Appendabl method in class:Formatter
633 public Formatter(Locale l) { method in class:Formatter
649 public Formatter(Appendable a, Locale l) { method in class:Formatter
676 public Formatter(String fileName) throws FileNotFoundException { method in class:Formatter
701 public Formatter(String fileName, String csn) throws FileNotFoundException, method in class:Formatter
727 public Formatter(String fileName, String csn, Locale l) method in class:Formatter
751 public Formatter(File file) throws FileNotFoundException { method in class:Formatter
776 public Formatter(File file, String csn) throws FileNotFoundException, method in class:Formatter
802 public Formatter(File file, String csn, Locale l) method in class:Formatter
830 public Formatter(OutputStream os) { method in class:Formatter
849 public Formatter(OutputStream os, String csn) throws UnsupportedEncodingException { method in class:Formatter
867 public Formatter(OutputStream os, String csn, Locale l) throws UnsupportedEncodingException { method in class:Formatter
885 public Formatter(PrintStream ps) { method in class:Formatter
[all...]
/libcore/luni/src/main/java/java/util/logging/
H A DFormatter.java24 * {@code Formatter} objects are used to format {@link LogRecord} objects into a
29 public abstract class Formatter { class
32 * Constructs a {@code Formatter} object.
34 protected Formatter() { method in class:Formatter
51 * Formatter}.

Completed in 394 milliseconds