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

/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}.
/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
303 * The facilities offered by {@code Formatter} are low-level and place the burden of localization
521 * <p><i>Thread safety</i>. Formatter is not thread-safe.
528 public final class Formatter implements Closeable, Flushable { class in inherits:Closeable,Flushable
598 * Constructs a {@code Formatter}.
606 public Formatter() { method in class:Formatter
611 * Constructs a {@code Formatter} whose output will be written to the
618 * the output destination of the {@code Formatter}. If {@code a} is {@code null},
621 public Formatter(Appendabl method in class:Formatter
635 public Formatter(Locale l) { method in class:Formatter
651 public Formatter(Appendable a, Locale l) { method in class:Formatter
678 public Formatter(String fileName) throws FileNotFoundException { method in class:Formatter
703 public Formatter(String fileName, String csn) throws FileNotFoundException, method in class:Formatter
729 public Formatter(String fileName, String csn, Locale l) method in class:Formatter
753 public Formatter(File file) throws FileNotFoundException { method in class:Formatter
778 public Formatter(File file, String csn) throws FileNotFoundException, method in class:Formatter
804 public Formatter(File file, String csn, Locale l) method in class:Formatter
832 public Formatter(OutputStream os) { method in class:Formatter
851 public Formatter(OutputStream os, String csn) throws UnsupportedEncodingException { method in class:Formatter
869 public Formatter(OutputStream os, String csn, Locale l) throws UnsupportedEncodingException { method in class:Formatter
887 public Formatter(PrintStream ps) { method in class:Formatter
[all...]

Completed in 36 milliseconds