public enum GroupLevelEnum extends Enum<GroupLevelEnum>
Enum Constant and Description |
---|
CERTIFIED
认证过的群
|
OFFICIAL
官方群
|
ORDINARY
普通群
|
Modifier and Type | Method and Description |
---|---|
static GroupLevelEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupLevelEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupLevelEnum ORDINARY
public static final GroupLevelEnum CERTIFIED
public static final GroupLevelEnum OFFICIAL
public static GroupLevelEnum[] values()
for (GroupLevelEnum c : GroupLevelEnum.values()) System.out.println(c);
public static GroupLevelEnum 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.