Format Type
The general formatting type of any one of the predefined FormatChar instances.
See also
Original Java code of Google Flogger
Entries
Formatting that can be applied to Character or any integral type that can be losslessly converted to an int and for which isValidCodePoint returns true.
Formatting that can be applied to any integral Number type. Logging backends must support Byte, Short, Integer, Long and BigInteger but may also support additional numeric types directly. A logging backend that encounters an unknown numeric type should fall back to using toString().
Formatting that can be applied to any Number type. Logging backends must support all the integral types as well as Float, Double and BigDecimal, but may also support additional numeric types directly. A logging backend that encounters an unknown numeric type should fall back to using toString().
Functions
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.