public enum ScreenSharingRole extends java.lang.Enum<ScreenSharingRole>
| Enum Constant and Description |
|---|
SHARER
sharer
|
UNEXPECTED_VALUE
For ScreenSharingRole values that were not expected from the service
|
VIEWER
viewer
|
| Modifier and Type | Method and Description |
|---|---|
static ScreenSharingRole |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenSharingRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenSharingRole VIEWER
public static final ScreenSharingRole SHARER
public static final ScreenSharingRole UNEXPECTED_VALUE
public static ScreenSharingRole[] values()
for (ScreenSharingRole c : ScreenSharingRole.values()) System.out.println(c);
public static ScreenSharingRole 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