Package com.foxinmy.weixin4j.qy.type
Enum LoginUserType
- java.lang.Object
-
- java.lang.Enum<LoginUserType>
-
- com.foxinmy.weixin4j.qy.type.LoginUserType
-
- All Implemented Interfaces:
Serializable
,Comparable<LoginUserType>
public enum LoginUserType extends Enum<LoginUserType>
成员登录类型- Since:
- JDK 1.6
- Author:
- jinyu(foxinmy@gmail.com)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATOR
企业号创建者INNERADMIN
企业号内部系统管理员LEVELADMIN
企业号分级管理员MEMBER
企业号成员OUTTERADMIN
企业号外部系统管理员
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LoginUserType
valueOf(String name)
Returns the enum constant of this type with the specified name.static LoginUserType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATOR
public static final LoginUserType CREATOR
企业号创建者
-
INNERADMIN
public static final LoginUserType INNERADMIN
企业号内部系统管理员
-
OUTTERADMIN
public static final LoginUserType OUTTERADMIN
企业号外部系统管理员
-
LEVELADMIN
public static final LoginUserType LEVELADMIN
企业号分级管理员
-
MEMBER
public static final LoginUserType MEMBER
企业号成员
-
-
Method Detail
-
values
public static LoginUserType[] 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 (LoginUserType c : LoginUserType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoginUserType 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
-
-