public enum TrackSwitchOffMode extends java.lang.Enum<TrackSwitchOffMode>
Enum Constant and Description |
---|
DETECTED
In this mode, Tracks are switched off only when network congestion is detected.
|
DISABLED
In this mode, Tracks are never switched off.
|
PREDICTED
In this mode, Tracks are pro-actively switched off when network congestion is predicted by
the bandwidth estimation mechanism.
|
Modifier and Type | Method and Description |
---|---|
static TrackSwitchOffMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TrackSwitchOffMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackSwitchOffMode DISABLED
public static final TrackSwitchOffMode PREDICTED
public static final TrackSwitchOffMode DETECTED
public static TrackSwitchOffMode[] values()
for (TrackSwitchOffMode c : TrackSwitchOffMode.values()) System.out.println(c);
public static TrackSwitchOffMode 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 null6.0.0