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

/dalvik/libcore/logging/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
52 * Formatter}.
/dalvik/libcore/luni/src/main/java/java/util/
H A DFormatter.java47 * It's relatively rare to use a {@code Formatter} directly. A variety of classes offer convenience
307 * It's also possible to format dates and times with {@code Formatter}, though you should seriously
310 * The facilities offered by {@code Formatter} are low-level and place the burden of localization
521 * Formatter is not thread-safe.
528 public final class Formatter implements Closeable, Flushable { class in inherits:Closeable,Flushable
554 * Constructs a {@code Formatter}.
560 * The {@code Locale} for the {@code Formatter} is the default {@code Locale}.
562 public Formatter() { method in class:Formatter
567 * Constructs a {@code Formatter} whose output will be written to the
570 * The locale for the {@code Formatter} i
576 public Formatter(Appendable a) { method in class:Formatter
591 public Formatter(Locale l) { method in class:Formatter
607 public Formatter(Appendable a, Locale l) { method in class:Formatter
636 public Formatter(String fileName) throws FileNotFoundException { method in class:Formatter
663 public Formatter(String fileName, String csn) throws FileNotFoundException, method in class:Formatter
692 public Formatter(String fileName, String csn, Locale l) method in class:Formatter
718 public Formatter(File file) throws FileNotFoundException { method in class:Formatter
745 public Formatter(File file, String csn) throws FileNotFoundException, method in class:Formatter
774 public Formatter(File file, String csn, Locale l) method in class:Formatter
804 public Formatter(OutputStream os) { method in class:Formatter
826 public Formatter(OutputStream os, String csn) method in class:Formatter
846 public Formatter(OutputStream os, String csn, Locale l) method in class:Formatter
869 public Formatter(PrintStream ps) { method in class:Formatter
[all...]

Completed in 116 milliseconds