Class EventType
java.lang.Object
jdk.jfr.EventType
Describes an event, its fields, settings and annotations.
The following example shows how the EventType class can
be used to print metadata about an event.
for (EventType eventType : FlightRecorder.getFlightRecorder().getEventTypes()) {
    System.out.println("Event Type: " + eventType.getName());
    if (eventType.getLabel() != null) {
        System.out.println("Label: " + eventType.getLabel());
    }
    if (eventType.getDescription() != null) {
        System.out.println("Description: " + eventType.getDescription());
    }
    StringJoiner s = new StringJoiner(" / ");
    for (String category : eventType.getCategoryNames()) {
        s.add(category);
    }
    System.out.println("Category: " + s);
    System.out.println("Fields: " + eventType.getFields().size());
    System.out.println("Annotations: " + eventType.getAnnotationElements().size());
    System.out.println("Settings: " + eventType.getSettingDescriptors().size());
    System.out.println("Enabled: " + eventType.isEnabled());
    System.out.println();
}
- Since:
- 9
- 
Method SummaryModifier and TypeMethodDescription<A extends Annotation>
 AgetAnnotation(Class<A> annotationClass) Returns the first annotation for the specified type if an annotation element with the same name is directly present, otherwisenull.Returns an immutable list of annotation elements for this event type.Returns the list of human-readable names that makes up the categories for this event type (for example,"Java Application","Statistics").Returns a short sentence that describes the event class.static EventTypegetEventType(Class<? extends Event> eventClass) Returns the event type for an event class, ornullif it doesn't exist.Returns the field with the specified name, ornullif it doesn't exist.Returns an immutable list of descriptors that describe the event fields of this event type.longgetId()Returns a unique ID for this event type in the Java Virtual Machine (JVM).getLabel()Returns a human-readable name (for example,"CPU Load").getName()Returns an identifier for the event (for example,"jdk.CPULoad").Returns an immutable list of the setting descriptors that describe the available event settings for this event type.booleanReturnstrueif the event is enabled and at least one recording is running,falseotherwise.
- 
Method Details- 
getFieldsReturns an immutable list of descriptors that describe the event fields of this event type.- Returns:
- the list of field descriptors, not null
 
- 
getFieldReturns the field with the specified name, ornullif it doesn't exist.It's possible to index into a nested field by using "."(for instance"thread.group.parent.name").- Parameters:
- name- of the field to get, not- null
- Returns:
- a value descriptor that describes the field, or nullif the field with the specified name doesn't exist
 
- 
getName
- 
getLabel
- 
getIdpublic long getId()Returns a unique ID for this event type in the Java Virtual Machine (JVM).- Returns:
- the ID that is used in the JVM
 
- 
getAnnotationElementsReturns an immutable list of annotation elements for this event type.- Returns:
- an immutable list of annotations or an empty list if no
        annotations exists, not null
 
- 
isEnabledpublic boolean isEnabled()Returnstrueif the event is enabled and at least one recording is running,falseotherwise.By default, the event is enabled. The event can be enabled or disabled by setting the enabled setting to trueorfalse, programmatically or by using a configuration file. The event can also be disabled by annotating event with the@Enabled(false)annotation.- Returns:
- true if event is enabled, false otherwise
- See Also:
 
- 
getDescriptionReturns a short sentence that describes the event class.The description of an event class can be set with Description.- Returns:
- the description, or nullif no description exists
- See Also:
 
- 
getAnnotationReturns the first annotation for the specified type if an annotation element with the same name is directly present, otherwisenull.- Type Parameters:
- A- the type of the annotation to query for and return if present
- Parameters:
- annotationClass- the- Classobject that corresponds to the annotation type, not- null
- Returns:
- this element's annotation for the specified annotation type if
        directly present, else null
 
- 
getEventTypeReturns the event type for an event class, ornullif it doesn't exist.- Parameters:
- eventClass- the event class, not- null
- Returns:
- the event class, or null if class doesn't exist
- Throws:
- IllegalArgumentException- if- eventClassis an abstract class
- IllegalStateException- if the class is annotated with- Registered(false), but not manually registered
 
- 
getSettingDescriptorsReturns an immutable list of the setting descriptors that describe the available event settings for this event type.- Returns:
- the list of setting descriptors for this event type, not
        null
 
- 
getCategoryNames
 
-