blob: 81d162be45723702bf56b81c1627700c3bb2b036 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Jonathan Rajotte - Initial API and implementation
**********************************************************************/
package org.eclipse.tracecompass.internal.lttng2.control.core.model;
/**
* Trace domain type enumeration.
*
* @author Jonathan Rajotte
*/
public enum TraceChannelOutputType {
/** Channel output type : splice */
SPLICE("splice()", "SPLICE" ), //$NON-NLS-1$ //$NON-NLS-2$
/** Channel output type : mmap */
MMAP("mmap()", "MMAP"), //$NON-NLS-1$ //$NON-NLS-2$
/** Channel output type : unknown */
UNKNOWN("unknown", "unknown"); //$NON-NLS-1$ //$NON-NLS-2$
private final String fInName;
private final String fInMiName;
private TraceChannelOutputType(String name, String miName) {
fInName = name;
fInMiName = miName;
}
/**
* Get the type's name
*
* @return The type's name
*/
public String getInName() {
return fInName;
}
/**
* Get the type's name
*
* @return The type's name
*/
public String getInMiName() {
return fInMiName;
}
/**
* Return the corresponding {@link TraceChannelOutputType} of string miName
*
* @param name
* name of the Trace domain type to look for
* @return the corresponding {@link TraceChannelOutputType}
*/
public static TraceChannelOutputType valueOfString(String name) {
if (name == null) {
throw new IllegalArgumentException();
}
for (TraceChannelOutputType tdType : TraceChannelOutputType.values()) {
boolean isEqual = tdType.getInName().equalsIgnoreCase(name) || tdType.getInMiName().equalsIgnoreCase(name);
if (isEqual) {
return tdType;
}
}
// Unknown domain
return UNKNOWN;
}
}