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