public static enum StreamingProfile.ENCODING_ORIENTATION extends java.lang.Enum<StreamingProfile.ENCODING_ORIENTATION>
| Enum Constant and Description | 
|---|
LAND
The width of encoding size is greater than the height. 
 | 
PORT
The width of encoding size is smaller than the height. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static StreamingProfile.ENCODING_ORIENTATION | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static StreamingProfile.ENCODING_ORIENTATION[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final StreamingProfile.ENCODING_ORIENTATION PORT
width < height
public static final StreamingProfile.ENCODING_ORIENTATION LAND
width > height
public static StreamingProfile.ENCODING_ORIENTATION[] values()
for (StreamingProfile.ENCODING_ORIENTATION c : StreamingProfile.ENCODING_ORIENTATION.values()) System.out.println(c);
public static StreamingProfile.ENCODING_ORIENTATION 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 null