]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/thrift/lib/haxe/src/org/apache/thrift/protocol/TCompactTypes.hx
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / lib / haxe / src / org / apache / thrift / protocol / TCompactTypes.hx
CommitLineData
f67539c2
TL
1/**
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20package org.apache.thrift.protocol;
21
22/**
23 * All of the on-wire type codes.
24 */
25@:enum
26abstract TCompactTypes(Int) from Int to Int {
27 public static inline var STOP = 0x00;
28 public static inline var BOOLEAN_TRUE = 0x01;
29 public static inline var BOOLEAN_FALSE = 0x02;
30 public static inline var BYTE = 0x03;
31 public static inline var I16 = 0x04;
32 public static inline var I32 = 0x05;
33 public static inline var I64 = 0x06;
34 public static inline var DOUBLE = 0x07;
35 public static inline var BINARY = 0x08;
36 public static inline var LIST = 0x09;
37 public static inline var SET = 0x0A;
38 public static inline var MAP = 0x0B;
39 public static inline var STRUCT = 0x0C;
40}
41