public enum InviteTypeEnum extends java.lang.Enum<InviteTypeEnum>
Modifier and Type | Method and Description |
---|---|
static InviteTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InviteTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InviteTypeEnum NONE
public static final InviteTypeEnum PRESENTER
public static final InviteTypeEnum GUEST
public static InviteTypeEnum[] values()
for (InviteTypeEnum c : InviteTypeEnum.values()) System.out.println(c);
public static InviteTypeEnum 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