Enum AVVideoSizeType
- java.lang.Object
-
- java.lang.Enum<AVVideoSizeType>
-
- com.github.vbauer.avconv4java.type.AVVideoSizeType
-
- All Implemented Interfaces:
NamedType,java.io.Serializable,java.lang.Comparable<AVVideoSizeType>
public enum AVVideoSizeType extends java.lang.Enum<AVVideoSizeType> implements NamedType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAVVideoSizeType.Constants
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AVVideoSizeTypefindByName(java.lang.String name)intgetHeight()java.lang.StringgetName()intgetWidth()static AVVideoSizeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AVVideoSizeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SQCIF
public static final AVVideoSizeType SQCIF
-
QCIF
public static final AVVideoSizeType QCIF
-
CIF
public static final AVVideoSizeType CIF
-
CIF4
public static final AVVideoSizeType CIF4
-
CIF16
public static final AVVideoSizeType CIF16
-
QQVGA
public static final AVVideoSizeType QQVGA
-
QVGA
public static final AVVideoSizeType QVGA
-
VGA
public static final AVVideoSizeType VGA
-
SVGA
public static final AVVideoSizeType SVGA
-
XGA
public static final AVVideoSizeType XGA
-
UXGA
public static final AVVideoSizeType UXGA
-
QXGA
public static final AVVideoSizeType QXGA
-
SXGA
public static final AVVideoSizeType SXGA
-
QSXGA
public static final AVVideoSizeType QSXGA
-
HSXGA
public static final AVVideoSizeType HSXGA
-
WVGA
public static final AVVideoSizeType WVGA
-
WXGA
public static final AVVideoSizeType WXGA
-
WSXGA
public static final AVVideoSizeType WSXGA
-
WUXGA
public static final AVVideoSizeType WUXGA
-
WOXGA
public static final AVVideoSizeType WOXGA
-
WQSXGA
public static final AVVideoSizeType WQSXGA
-
WQUXGA
public static final AVVideoSizeType WQUXGA
-
WHSXGA
public static final AVVideoSizeType WHSXGA
-
WHUXGA
public static final AVVideoSizeType WHUXGA
-
CGA
public static final AVVideoSizeType CGA
-
EGA
public static final AVVideoSizeType EGA
-
HD480
public static final AVVideoSizeType HD480
-
HD720
public static final AVVideoSizeType HD720
-
HD1080
public static final AVVideoSizeType HD1080
-
-
Method Detail
-
values
public static AVVideoSizeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AVVideoSizeType c : AVVideoSizeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AVVideoSizeType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getWidth
public int getWidth()
-
getHeight
public int getHeight()
-
findByName
public static AVVideoSizeType findByName(java.lang.String name)
-
-