btf: Initial Best Trace Format commit
[deliverable/tracecompass.git] / org.eclipse.linuxtools.btf.core / src / org / eclipse / linuxtools / 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.linuxtools.btf.core.trace;
14
15 /**
16 * Column names
17 *
18 * @author Matthew Khouzam
19 */
20 public enum BtfColumnNames {
21
22 /**
23 * The event timestamp
24 */
25 TIMESTAMP("Timestamp"), //$NON-NLS-1$
26 /**
27 * The source
28 */
29 SOURCE("Source"), //$NON-NLS-1$
30 /**
31 * The source instance
32 */
33 SOURCE_INSTANCE("Source instance"), //$NON-NLS-1$
34 /**
35 * The event field name
36 */
37 EVENT_TYPE("Event type"), //$NON-NLS-1$
38 /**
39 * The target
40 */
41 TARGET("Target"), //$NON-NLS-1$
42 /**
43 * The target instance
44 */
45 TARGET_INSTANCE("Target instance"), //$NON-NLS-1$
46 /**
47 * The event
48 */
49 EVENT("Event"), //$NON-NLS-1$
50 /**
51 * Notes
52 */
53 NOTES("Notes"); //$NON-NLS-1$
54
55 private final String fField;
56
57 private BtfColumnNames(String field) {
58 fField = field;
59 }
60
61 @Override
62 public String toString() {
63 return fField;
64 }
65 }
This page took 0.031534 seconds and 5 git commands to generate.