blob: f2e07a1b2d48cdd2a9a9086930b99e1d51ed1284 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 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
*******************************************************************************/
package org.eclipse.tracecompass.internal.statesystem.core.interval.json;
/**
* GSON State Interval Strings
*
* @author Matthew Khouzam
*/
final class TmfIntervalStrings {
public static final String START = "start"; //$NON-NLS-1$
public static final String END = "end"; //$NON-NLS-1$
public static final String QUARK = "quark"; //$NON-NLS-1$
public static final String TYPE = "type"; //$NON-NLS-1$
public static final String NULL = String.valueOf((Object)null);
public static final String VALUE = "value"; //$NON-NLS-1$
/**
* Constructor
*/
private TmfIntervalStrings() {
// Do nothing
}
}