public enum ScanOrder extends Enum<ScanOrder>
| Enum Constant and Description |
|---|
BottomFieldFirst |
TopFieldFirst |
| Modifier and Type | Method and Description |
|---|---|
static ScanOrder |
fromString(String value) |
static ScanOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScanOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanOrder TopFieldFirst
public static final ScanOrder BottomFieldFirst
public static ScanOrder[] values()
for (ScanOrder c : ScanOrder.values()) System.out.println(c);
public static ScanOrder 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 © 2009–2021 Opencast Project. All rights reserved.