public static enum Phone.DefaultBandwidth extends java.lang.Enum<Phone.DefaultBandwidth>
Enum Constant and Description |
---|
MAX_BANDWIDTH_1080P
4Mbps for 1920x1080 resolution
|
MAX_BANDWIDTH_180P
384Kbps for 320x180 resolution
|
MAX_BANDWIDTH_360P
768Kbps for 640x360 resolution
|
MAX_BANDWIDTH_720P
2.5Mbps for 1280x720 resolution
|
MAX_BANDWIDTH_90P
177Kbps for 160x90 resolution
|
MAX_BANDWIDTH_AUDIO
64kbps for voice
|
MAX_BANDWIDTH_SESSION
8Mbps 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 MAX_BANDWIDTH_90P
public static final Phone.DefaultBandwidth MAX_BANDWIDTH_180P
public static final Phone.DefaultBandwidth MAX_BANDWIDTH_360P
public static final Phone.DefaultBandwidth MAX_BANDWIDTH_720P
public static final Phone.DefaultBandwidth MAX_BANDWIDTH_1080P
public static final Phone.DefaultBandwidth MAX_BANDWIDTH_SESSION
public static final Phone.DefaultBandwidth MAX_BANDWIDTH_AUDIO
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()