83fa60d56f0549d41fd8e2aa6bc7b2a64ed431ef
[deliverable/tracecompass.git] / org.eclipse.tracecompass.btf.core / src / org / eclipse / tracecompass / btf / core / trace / BtfColumnNames.java
1 /*******************************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.btf.core.trace;
14
15 import org.eclipse.jdt.annotation.NonNull;
16
17 /**
18 * Column names
19 *
20 * @author Matthew Khouzam
21 */
22 public enum BtfColumnNames {
23
24 /**
25 * The event timestamp
26 */
27 TIMESTAMP("Timestamp"), //$NON-NLS-1$
28 /**
29 * The source
30 */
31 SOURCE("Source"), //$NON-NLS-1$
32 /**
33 * The source instance
34 */
35 SOURCE_INSTANCE("Source instance"), //$NON-NLS-1$
36 /**
37 * The event field name
38 */
39 EVENT_TYPE("Event type"), //$NON-NLS-1$
40 /**
41 * The target
42 */
43 TARGET("Target"), //$NON-NLS-1$
44 /**
45 * The target instance
46 */
47 TARGET_INSTANCE("Target instance"), //$NON-NLS-1$
48 /**
49 * The event
50 */
51 EVENT("Event"), //$NON-NLS-1$
52 /**
53 * Notes
54 */
55 NOTES("Notes"); //$NON-NLS-1$
56
57 private final @NonNull String fField;
58
59 private BtfColumnNames(@NonNull String field) {
60 fField = field;
61 }
62
63 @Override
64 public @NonNull String toString() {
65 return fField;
66 }
67 }
This page took 0.031736 seconds and 4 git commands to generate.