b2b318d46516a9ed28fedf226f03239561ea8574
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / internal / ctf / core / event / metadata / MetadataStrings.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2014 Ericsson, Ecole Polytechnique de Montreal and others
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 *******************************************************************************/
11
12 package org.eclipse.tracecompass.internal.ctf.core.event.metadata;
13
14 /**
15 * Strings generated from the TSDL grammar. Note that they are static final so
16 * they get quarked. See CTF specs for more details
17 *
18 * @author Matthew Khouzam and All
19 */
20 @SuppressWarnings("nls")
21 public interface MetadataStrings {
22
23 /** None */
24
25 String NONE = "none";
26 /** Ascii */
27 String ASCII = "ASCII";
28 /** UTF8 */
29 String UTF8 = "UTF8";
30 /** b (for binary like b11010010 */
31 String BIN = "b";
32 /** Binary */
33 String BINARY = "binary";
34 /** Octal like o177 */
35 String OCTAL_CTE = "o";
36 /** Octal like oct177 */
37 String OCT = "oct";
38 /** Octal like octal177 */
39 String OCTAL = "octal";
40 /** Pointer (memory address for all the hardcore Java gurus out there)*/
41 String POINTER = "p";
42 /** X for hex */
43 String X2 = "X";
44 /** x for hex */
45 String X = "x";
46 /** hex */
47 String HEX = "hex";
48 /** Hexadecimal */
49 String HEXADECIMAL = "hexadecimal";
50 /** unsigned like in 10000ul */
51 String UNSIGNED_CTE = "u";
52 /** Decimal */
53 String DEC_CTE = "d";
54 /** Integer like 1000i */
55 String INT_MOD = "i";
56 /** Decimal */
57 String DEC = "dec";
58 /** Decimal */
59 String DECIMAL = "decimal";
60 /** native for byteorders*/
61 String NATIVE = "native";
62 /** network for byteorders*/
63 String NETWORK = "network";
64 /** Big endian */
65 String BE = "be";
66 /** Little endian */
67 String LE = "le";
68 /** Alignment of a field */
69 String ALIGN = "align";
70 /** Mantissa digits */
71 String MANT_DIG = "mant_dig";
72 /** Exponent digits */
73 String EXP_DIG = "exp_dig";
74 /** Loglevel */
75 String LOGLEVEL2 = "loglevel";
76 /** Name */
77 String NAME2 = "name";
78 /** Event context */
79 String EVENT_CONTEXT = "event.context";
80 /** Fields */
81 String FIELDS_STRING = "fields";
82 /** context */
83 String CONTEXT = "context";
84 /** Stream ID */
85 String STREAM_ID = "stream_id";
86 /** Packet context */
87 String PACKET_CONTEXT = "packet.context";
88 /** ID */
89 String ID = "id";
90 /** Packet Header */
91 String PACKET_HEADER = "packet.header";
92 /** Event Header */
93 String EVENT_HEADER = "event.header";
94 /** Byte order */
95 String BYTE_ORDER = "byte_order";
96 /** UUID */
97 String UUID_STRING = "uuid";
98 /** False */
99 String FALSE2 = "FALSE";
100 /** False */
101 String FALSE = "false";
102 /** True */
103 String TRUE2 = "TRUE";
104 /** True */
105 String TRUE = "true";
106 /** Minor (Version)*/
107 String MINOR = "minor";
108 /** Major (Version)*/
109 String MAJOR = "major";
110
111 }
This page took 0.052566 seconds and 4 git commands to generate.