Class TableCacheScanTaskFormat
- java.lang.Object
-
- org.apache.ignite.internal.management.cache.scan.TableCacheScanTaskFormat
-
- All Implemented Interfaces:
CacheScanTaskFormat
public class TableCacheScanTaskFormat extends Object implements CacheScanTaskFormat
This format prints cache objects fields in table format.
-
-
Constructor Summary
Constructors Constructor Description TableCacheScanTaskFormat()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringname()List<?>row(javax.cache.Cache.Entry<Object,Object> e)Row for single cache entry.List<String>titles(javax.cache.Cache.Entry<Object,Object> first)Calculates and returns titles based on first cache entry.
-
-
-
Field Detail
-
NAME
public static final String NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
name
public String name()
- Specified by:
namein interfaceCacheScanTaskFormat- Returns:
- name of the format.
- See Also:
CacheScanCommandArg
-
titles
public List<String> titles(javax.cache.Cache.Entry<Object,Object> first)
Calculates and returns titles based on first cache entry.- Specified by:
titlesin interfaceCacheScanTaskFormat- Returns:
- Column titles.
-
row
public List<?> row(javax.cache.Cache.Entry<Object,Object> e)
Row for single cache entry.- Specified by:
rowin interfaceCacheScanTaskFormat
-
-