lttng: fix sonar warnings about redundant modifier in interfaces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / TraceEventType.java
CommitLineData
eb1bab5b
BH
1/**********************************************************************
2 * Copyright (c) 2012 Ericsson
b0318660 3 *
eb1bab5b
BH
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
b0318660
AM
8 *
9 * Contributors:
eb1bab5b
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
9315aeee 12package org.eclipse.linuxtools.internal.lttng2.core.control.model;
eb1bab5b
BH
13
14/**
eb1bab5b
BH
15 * <p>
16 * Trace event type enumeration.
17 * </p>
b0318660 18 *
dbd4432d 19 * @author Bernd Hufmann
eb1bab5b 20 */
b0318660
AM
21public enum TraceEventType {
22 /** Event type: tracepoint */
eb1bab5b 23 TRACEPOINT("tracepoint"), //$NON-NLS-1$
b0318660 24 /** Event type: syscall */
3e91c9c0 25 SYSCALL("syscall"), //$NON-NLS-1$
b0318660 26 /** Event type: probe */
ccc66d01 27 PROBE("probe"), //$NON-NLS-1$
b0318660 28 /** Event type unknown */
eb1bab5b
BH
29 UNKNOWN("unknown"); //$NON-NLS-1$
30
31 private final String fInName;
32
33 private TraceEventType(String name) {
34 fInName = name;
35 }
36
b0318660
AM
37 /**
38 * Get the type's name
39 *
40 * @return The type's name
41 */
eb1bab5b
BH
42 public String getInName() {
43 return fInName;
44 }
b0318660 45}
eb1bab5b 46
This page took 0.035232 seconds and 5 git commands to generate.