package com.jcumulus.server.rtmfp.flow; /** * jCumulus is a Java port of Cumulus OpenRTMP * * Copyright 2011 OpenRTMFP * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License received along this program for more * details (or else see http://www.gnu.org/licenses/). * * * This file is a part of jCumulus. */ public enum H { Null, Boolean, Integer, Number, String, Date, Array, Object, ByteArray, Dictionary, RawObjectContent, End; public static final byte m = 5; public static final byte n = 6; public static final byte D = 13; public static final byte b = 17; public static final byte V = 0; public static final byte F = 1; public static final byte i = 2; public static final byte X = 11; public static final byte N = 3; public static final byte M = 16; public static final byte B = 9; public static final byte Z = 7; public static final byte K = 8; public static final byte O = 10; public static final byte W = 12; public static final byte _ = 0; public static final byte g = 1; public static final byte h = 2; public static final byte a = 3; public static final byte S = 4; public static final byte A = 5; public static final byte L = 6; public static final byte Q = 8; public static final byte G = 9; public static final byte f = 10; public static final byte I = 12; public static final byte P = 17; public static final byte T = -1; }