public enum TelloVideoExportType extends Enum<TelloVideoExportType>
VideoListener.
In general, the listener can provide Frames or/and BufferedImages.| Enum Constant and Description |
|---|
BOTH
Provide
Frames and BufferedImages. |
BUFFERED_IMAGE
Provide only
BufferedImages. |
JAVACV_FRAME
Provide only
Frames. |
| Modifier and Type | Method and Description |
|---|---|
static TelloVideoExportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TelloVideoExportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TelloVideoExportType JAVACV_FRAME
Frames.public static final TelloVideoExportType BUFFERED_IMAGE
BufferedImages.public static final TelloVideoExportType BOTH
Frames and BufferedImages.public static TelloVideoExportType[] values()
for (TelloVideoExportType c : TelloVideoExportType.values()) System.out.println(c);
public static TelloVideoExportType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.