com.cntool.core.component.NumberPool Maven / Gradle / Ivy
The newest version!
package com.cntool.core.component;
/**
* @program: cntool
* @description: 数字池
* @author: ID-Tang
* @create: 2022-03-04 11:37
* @copyright: Copyright (c) [2022] [ID-tang]
* [cntool] is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
**/
public class NumberPool {
/**
* 0
*/
public static final int ZERO = 0;
/**
* 1
*/
public static final int ONE = 1;
/**
* 2.
*/
public static final int TWO = 2;
/**
* 3
*/
public static final int THREE = 3;
/**
* 4
*/
public static final int FOUR = 4;
/**
* 5
*/
public static final int FIVE = 5;
/**
* 6
*/
public static final int SIX = 6;
/**
* 7
*/
public static final int SEVEN = 7;
/**
* 8
*/
public static final int EIGHT = 8;
/**
* 9
*/
public static final int NINE = 9;
/**
* 10
*/
public static final int TEN = 10;
/**
* 11
*/
public static final int ELEVEN = 11;
/**
* 12
*/
public static final int TWELVE = 12;
/**
* 13
*/
public static final int THIRTEEN = 13;
/**
* 14
*/
public static final int FOURTEEN = 14;
/**
* 15
*/
public static final int FIFTEEN = 15;
/**
* 16
*/
public static final int SIXTEEN = 16;
/**
* 17
*/
public static final int SEVENTEEN = 17;
/**
* 18
*/
public static final int EIGHTEEN = 18;
/**
* 19
*/
public static final int NINETEEN = 19;
/**
* 20
*/
public static final int TWENTY = 20;
/**
* 255
*/
public static final int TWO_HUNDRED_FIFTY_FIVE = 255;
}