Uses of Class
org.apache.accumulo.core.util.format.FormatterConfig
-
Packages that use FormatterConfig Package Description org.apache.accumulo.core.util.format -
-
Uses of FormatterConfig in org.apache.accumulo.core.util.format
Fields in org.apache.accumulo.core.util.format declared as FormatterConfig Modifier and Type Field Description protected FormatterConfig
DefaultFormatter. config
Methods in org.apache.accumulo.core.util.format that return FormatterConfig Modifier and Type Method Description FormatterConfig
FormatterConfig. doNotLimitShowLength()
FormatterConfig
FormatterConfig. setDateFormatSupplier(Supplier<DateFormat> dateFormatSupplier)
this.dateFormatSupplier points to dateFormatSupplier, so it is recommended that you create a newSupplier
when calling this function if yourSupplier
maintains some kind of state (seeDateFormatSupplier
.FormatterConfig
FormatterConfig. setPrintTimestamps(boolean printTimestamps)
FormatterConfig
FormatterConfig. setShownLength(int shownLength)
If given a negative number, throws anIllegalArgumentException
Methods in org.apache.accumulo.core.util.format with parameters of type FormatterConfig Modifier and Type Method Description static String
DefaultFormatter. formatEntry(Map.Entry<Key,Value> entry, FormatterConfig config)
static Formatter
FormatterFactory. getDefaultFormatter(Iterable<Map.Entry<Key,Value>> scanner, FormatterConfig config)
static Formatter
FormatterFactory. getFormatter(Class<? extends Formatter> formatterClass, Iterable<Map.Entry<Key,Value>> scanner, FormatterConfig config)
void
DefaultFormatter. initialize(Iterable<Map.Entry<Key,Value>> scanner, FormatterConfig config)
void
Formatter. initialize(Iterable<Map.Entry<Key,Value>> scanner, FormatterConfig config)
Constructors in org.apache.accumulo.core.util.format with parameters of type FormatterConfig Constructor Description FormatterConfig(FormatterConfig other)
Copies most fields, but still points to other.dateFormatSupplier.
-