UserType

public enum UserType

用户类型枚举类 用于区分普通用户和机器人用户

Since

5.22.0

Entries

Link copied to clipboard

普通用户

Link copied to clipboard

机器人

Properties

Link copied to clipboard
public final int value

Functions

Link copied to clipboard
public static UserType fromValue(int value)
根据整数值获取对应的 UserType 枚举
Link copied to clipboard
public int getValue()
Link copied to clipboard
public static UserType 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.)

Link copied to clipboard
public static Array<UserType> values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.