public static enum IFD.ImageRepresentation extends Enum<IFD.ImageRepresentation>
| Enum Constant and Description |
|---|
STRIPS
The image is stored in strips.
|
TILES
The image is stored in tiles.
|
UNDEFINED
Undefined.
|
| Modifier and Type | Method and Description |
|---|---|
static IFD.ImageRepresentation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IFD.ImageRepresentation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IFD.ImageRepresentation STRIPS
public static final IFD.ImageRepresentation TILES
public static final IFD.ImageRepresentation UNDEFINED
public static IFD.ImageRepresentation[] values()
for (IFD.ImageRepresentation c : IFD.ImageRepresentation.values()) System.out.println(c);
public static IFD.ImageRepresentation 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 © 2015–2020. All rights reserved.