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