public enum ScopeType extends Enum<ScopeType>
| Enum Constant and Description |
|---|
APPLICATION |
BROADCAST |
GLOBAL |
ROOM |
SHARED_OBJECT |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static ScopeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScopeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScopeType UNDEFINED
public static final ScopeType GLOBAL
public static final ScopeType APPLICATION
public static final ScopeType ROOM
public static final ScopeType BROADCAST
public static final ScopeType SHARED_OBJECT
public static ScopeType[] values()
for (ScopeType c : ScopeType.values()) System.out.println(c);
public static ScopeType 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 © 2005–2017 Red5. All rights reserved.