Enum ParameterType
- java.lang.Object
-
- java.lang.Enum<ParameterType>
-
- com.foxinmy.weixin4j.wxa.model.subscribemessage.ParameterType
-
- All Implemented Interfaces:
Serializable
,Comparable<ParameterType>
public enum ParameterType extends Enum<ParameterType>
https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.send.html
-
-
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:01LETTER
32位以内字母 只能字母NAME
10个以内纯汉字或20个以内纯字母或符号 中文名10个汉字内;纯英文名20个字母内;中文和字母混合按中文名算,10个字内NUMBER
32位以内数字 只能数字,可带小数PHONE_NUMBER
17位以内,数字、符号 电话号码,例:+86-0766-66888866PHRASE
5个以内汉字 5个以内纯汉字,例如:配送中SYMBOL
5位以内符号 只能符号THING
20个以内字符 可汉字、数字、字母或符号组合 可汉字、数字、字母或符号组合TIME
24小时制时间格式(支持+年月日) 例如:15:01,或:2019年10月1日 15:01
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static ParameterType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ParameterType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<ParameterType>
-
-