/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.huawei.streaming.cql;
/**
* 测试用例中用到的一些常量
*
*/
public class ConstInTestCase
{
/**
* 常量0
*/
public static final int I_0 = 0;
/**
* 常量1
*/
public static final int I_1 = 1;
/**
* 常量2
*/
public static final int I_2 = 2;
/**
* 常量3
*/
public static final int I_3 = 3;
/**
* 常量4
*/
public static final int I_4 = 4;
/**
* 常量5
*/
public static final int I_5 = 5;
/**
* 常量6
*/
public static final int I_6 = 6;
/**
* 常量7
*/
public static final int I_7 = 7;
/**
* 常量8
*/
public static final int I_8 = 8;
/**
* 常量9
*/
public static final int I_9 = 9;
/**
* 常量10
*/
public static final int I_10 = 10;
/**
* 常量11
*/
public static final int I_11 = 11;
/**
* 常量99
*/
public static final int I_99 = 99;
/**
* 常量100
*/
public static final int I_100 = 100;
/**
* 常量150
*/
public static final int I_150 = 150;
/**
* 常量-50
*/
public static final int I_N50 = -50;
/**
* 常量50
*/
public static final int I_50 = 50;
/**
* 常量1000
*/
public static final int I_1000 = 1000;
/**
* long类型10
*/
public static final long L_7 = 7L;
}