|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ImageZoom> de.desy.acop.video.displayer.ImageZoom
public enum ImageZoom
To resize an image in the ImageDisplayer pane
Enum Constant Summary | |
---|---|
AUTO
The image automatically resizes to fit the dimensions of the ImageDisplayer |
|
DOUBLE
Zoom at 200% |
|
HALF
Zoom at 50% |
|
NORMAL
Zoom at 100% |
Method Summary | |
---|---|
java.lang.String |
getDescription()
|
static ImageZoom |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ImageZoom[] |
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 ImageZoom AUTO
public static final ImageZoom HALF
public static final ImageZoom NORMAL
public static final ImageZoom DOUBLE
Method Detail |
---|
public static ImageZoom[] values()
for (ImageZoom c : ImageZoom.values()) System.out.println(c);
public static ImageZoom 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 java.lang.String getDescription()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |