public enum Capture extends Enum<Capture>
| Enum Constant and Description |
|---|
FULL |
FULL_SCROLL |
HORIZONTAL_SCROLL |
VERTICAL_SCROLL |
VIEWPORT |
| Modifier and Type | Method and Description |
|---|---|
static Capture |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Capture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Capture VIEWPORT
public static final Capture FULL
public static final Capture FULL_SCROLL
public static final Capture VERTICAL_SCROLL
public static final Capture HORIZONTAL_SCROLL
public static Capture[] values()
for (Capture c : Capture.values()) System.out.println(c);
public static Capture 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.