public enum CommunityStatus extends Enum<CommunityStatus>
| Enum Constant and Description |
|---|
all |
hidden |
manager |
PUBLIC |
RESTRICTED |
| Modifier and Type | Method and Description |
|---|---|
static CommunityStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommunityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommunityStatus hidden
public static final CommunityStatus manager
public static final CommunityStatus all
public static final CommunityStatus RESTRICTED
public static final CommunityStatus PUBLIC
public static CommunityStatus[] values()
for (CommunityStatus c : CommunityStatus.values()) System.out.println(c);
public static CommunityStatus 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 © 2025. All rights reserved.