public enum MemberListType extends java.lang.Enum<MemberListType>
| Enum Constant and Description |
|---|
EXCLUSION_LIST
The member list for the custom endpoint specifies which instances are excluded from the custom endpoint.
|
STATIC_LIST
The member list for the custom endpoint specifies which instances are included in the custom endpoint.
|
| Modifier and Type | Method and Description |
|---|---|
static MemberListType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MemberListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberListType STATIC_LIST
public static final MemberListType EXCLUSION_LIST
public static MemberListType[] values()
for (MemberListType c : MemberListType.values()) System.out.println(c);
public static MemberListType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null