|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ImageFlag> de.desy.acop.video.displayer.ImageFlag
public enum ImageFlag
Image flag enumeration
Enum Constant Summary | |
---|---|
HORIZONTAL_FLIP_180
If set, image was flipped around horizontal axis on its way |
|
IMAGE_LOSSLESS
If set, original image data (first digital image data) can be restored out of the appended image bits |
|
LITTLE_ENDIAN_BYTE_ORDER
if set, appended video data is ordered little endian (on video format types where this is applicable) |
|
VERTICAL_FLIP_180
If set, image was flipped around vertical axis on its way |
Method Summary | |
---|---|
int |
getId()
|
static java.lang.String |
toString(int flags)
Decodes flags integer into human readable string format |
static ImageFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ImageFlag[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ImageFlag LITTLE_ENDIAN_BYTE_ORDER
public static final ImageFlag IMAGE_LOSSLESS
public static final ImageFlag HORIZONTAL_FLIP_180
public static final ImageFlag VERTICAL_FLIP_180
Method Detail |
---|
public static ImageFlag[] values()
for (ImageFlag c : ImageFlag.values()) System.out.println(c);
public static ImageFlag valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic int getId()
public static java.lang.String toString(int flags)
flags
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |