Package org.openjdk.jmc.flightrecorder
Interface IParserStats
-
public interface IParserStats
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceIParserStats.IEventStats
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidforEachEventType(java.util.function.Consumer<IParserStats.IEventStats> consumer)intgetChunkCount()default java.util.Map<java.lang.String,IConstantPoolExtension>getConstantPoolExtensions()IItemCollectiongetConstantPools()IItemCollectiongetConstants()longgetEventCountByType(java.lang.String eventTypeName)longgetEventTotalSizeByType(java.lang.String eventTypeName)shortgetMajorVersion()shortgetMinorVersion()longgetSkippedEventCount()
-
-
-
Method Detail
-
forEachEventType
void forEachEventType(java.util.function.Consumer<IParserStats.IEventStats> consumer)
-
getMajorVersion
short getMajorVersion()
-
getMinorVersion
short getMinorVersion()
-
getChunkCount
int getChunkCount()
-
getSkippedEventCount
long getSkippedEventCount()
-
getEventCountByType
long getEventCountByType(java.lang.String eventTypeName)
-
getEventTotalSizeByType
long getEventTotalSizeByType(java.lang.String eventTypeName)
-
getConstantPools
IItemCollection getConstantPools()
-
getConstants
IItemCollection getConstants()
-
getConstantPoolExtensions
default java.util.Map<java.lang.String,IConstantPoolExtension> getConstantPoolExtensions()
-
-