public static enum Phone.DefaultBandwidth extends java.lang.Enum<Phone.DefaultBandwidth>
Enum Constant and Description |
---|
maxBandwidth1080p
3Mbps for 1920x1080 resolution
|
maxBandwidth180p
384Kbps for 320x180 resolution
|
maxBandwidth360p
768Kbps for 640x360 resolution
|
maxBandwidth720p
2Mbps for 1280x720 resolution
|
maxBandwidth90p
177Kbps for 160x90 resolution
|
maxBandwidthAudio
64kbps for voice
|
maxBandwidthSession
4Mbps data session
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Phone.DefaultBandwidth |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Phone.DefaultBandwidth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Phone.DefaultBandwidth maxBandwidth90p
public static final Phone.DefaultBandwidth maxBandwidth180p
public static final Phone.DefaultBandwidth maxBandwidth360p
public static final Phone.DefaultBandwidth maxBandwidth720p
public static final Phone.DefaultBandwidth maxBandwidth1080p
public static final Phone.DefaultBandwidth maxBandwidthSession
public static final Phone.DefaultBandwidth maxBandwidthAudio
public static Phone.DefaultBandwidth[] values()
for (Phone.DefaultBandwidth c : Phone.DefaultBandwidth.values()) System.out.println(c);
public static Phone.DefaultBandwidth 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 nullpublic int getValue()