public static enum FrameGrabber.ImageMode extends Enum<FrameGrabber.ImageMode>
Modifier and Type | Method and Description |
---|---|
static FrameGrabber.ImageMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameGrabber.ImageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameGrabber.ImageMode COLOR
public static final FrameGrabber.ImageMode GRAY
public static final FrameGrabber.ImageMode RAW
public static FrameGrabber.ImageMode[] values()
for (FrameGrabber.ImageMode c : FrameGrabber.ImageMode.values()) System.out.println(c);
public static FrameGrabber.ImageMode 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 © 2022. All rights reserved.