public enum GroupJoinAuthEnum extends Enum<GroupJoinAuthEnum>
Enum Constant and Description |
---|
ACQUIESCENCE
直接同意
|
APPLICATION
提交申请
|
REFUSE
禁止用户提出申请
|
Modifier and Type | Method and Description |
---|---|
static GroupJoinAuthEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupJoinAuthEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupJoinAuthEnum ACQUIESCENCE
public static final GroupJoinAuthEnum REFUSE
public static final GroupJoinAuthEnum APPLICATION
public static GroupJoinAuthEnum[] values()
for (GroupJoinAuthEnum c : GroupJoinAuthEnum.values()) System.out.println(c);
public static GroupJoinAuthEnum valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022. All rights reserved.