1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package jdk.jfr.consumer;
17
18 public class RecordedEvent {
19 public RecordedEvent() {
20 throw new UnsupportedOperationException("Stub should only be used at compile time");
21 }
22
23 public String getString(String fieldName) {
24 throw new UnsupportedOperationException("Stub should only be used at compile time");
25 }
26
27 public boolean getBoolean(String fieldName) {
28 throw new UnsupportedOperationException("Stub should only be used at compile time");
29 }
30
31 public int getInt(String fieldName) {
32 throw new UnsupportedOperationException("Stub should only be used at compile time");
33 }
34 }