Enum ParameterType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      AMOUNT
      1个币种符号+10位以内纯数字,可带小数,结尾可带“元” 可带小数
      CAR_NUMBER
      8位以内,第一位与最后一位可为汉字,其余为字母或数字 车牌号码:粤A8Z888挂
      CHARACTER_STRING
      32位以内数字、字母或符号 可数字、字母或符号组合
      DATE
      年月日格式(支持+24小时制时间) 例如:2019年10月1日,或:2019年10月1日 15:01
      LETTER
      32位以内字母 只能字母
      NAME
      10个以内纯汉字或20个以内纯字母或符号 中文名10个汉字内;纯英文名20个字母内;中文和字母混合按中文名算,10个字内
      NUMBER
      32位以内数字 只能数字,可带小数
      PHONE_NUMBER
      17位以内,数字、符号 电话号码,例:+86-0766-66888866
      PHRASE
      5个以内汉字 5个以内纯汉字,例如:配送中
      SYMBOL
      5位以内符号 只能符号
      THING
      20个以内字符 可汉字、数字、字母或符号组合 可汉字、数字、字母或符号组合
      TIME
      24小时制时间格式(支持+年月日) 例如:15:01,或:2019年10月1日 15:01
    • Enum Constant Detail

      • THING

        public static final ParameterType THING
        20个以内字符 可汉字、数字、字母或符号组合 可汉字、数字、字母或符号组合
      • TIME

        public static final ParameterType TIME
        24小时制时间格式(支持+年月日) 例如:15:01,或:2019年10月1日 15:01
      • DATE

        public static final ParameterType DATE
        年月日格式(支持+24小时制时间) 例如:2019年10月1日,或:2019年10月1日 15:01
      • NAME

        public static final ParameterType NAME
        10个以内纯汉字或20个以内纯字母或符号 中文名10个汉字内;纯英文名20个字母内;中文和字母混合按中文名算,10个字内
      • NUMBER

        public static final ParameterType NUMBER
        32位以内数字 只能数字,可带小数
      • LETTER

        public static final ParameterType LETTER
        32位以内字母 只能字母
      • SYMBOL

        public static final ParameterType SYMBOL
        5位以内符号 只能符号
      • PHRASE

        public static final ParameterType PHRASE
        5个以内汉字 5个以内纯汉字,例如:配送中
      • AMOUNT

        public static final ParameterType AMOUNT
        1个币种符号+10位以内纯数字,可带小数,结尾可带“元” 可带小数
      • CAR_NUMBER

        public static final ParameterType CAR_NUMBER
        8位以内,第一位与最后一位可为汉字,其余为字母或数字 车牌号码:粤A8Z888挂
      • PHONE_NUMBER

        public static final ParameterType PHONE_NUMBER
        17位以内,数字、符号 电话号码,例:+86-0766-66888866
      • CHARACTER_STRING

        public static final ParameterType CHARACTER_STRING
        32位以内数字、字母或符号 可数字、字母或符号组合
    • Method Detail

      • values

        public static ParameterType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ParameterType c : ParameterType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ParameterType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null