Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / ctf / core / event / types / Encoding.java
CommitLineData
866e5b51 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2011-2014 Ericsson, Ecole Polytechnique de Montreal and others
866e5b51
FC
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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: Matthew Khouzam - Initial API and implementation
10 * Contributors: Simon Marchi - Initial API and implementation
11 *******************************************************************************/
12
f357bcd4 13package org.eclipse.tracecompass.ctf.core.event.types;
866e5b51 14
a4fa4e36
MK
15import org.eclipse.jdt.annotation.NonNullByDefault;
16
866e5b51 17/**
d37aaa7f
FC
18 * CTF encoding types
19 *
20 * @version 1.0
21 * @author Matthew Khouzam
22 * @author Simon Marchi
866e5b51 23 */
a4fa4e36 24@NonNullByDefault
866e5b51 25public enum Encoding {
9ac2eb62
MK
26 /** UTF-8 encoding */
27 UTF8,
28 /** Ascii encoding */
29 ASCII,
30 /** No encoding, maybe not even text */
31 NONE
866e5b51 32}
This page took 0.053647 seconds and 5 git commands to generate.