public static enum JImageViewer.Quality extends Enum<JImageViewer.Quality>
Enum Constant and Description |
---|
BEST
This quality gives best scaling results, but it is rather slow.
|
DEFAULT
The default quality.
|
FAST
This quality is very fast, but will give a rather poor scaling result.
|
SMOOTH
This quality is reasonable in speed and quality.
|
Modifier and Type | Method and Description |
---|---|
static JImageViewer.Quality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JImageViewer.Quality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JImageViewer.Quality DEFAULT
public static final JImageViewer.Quality FAST
public static final JImageViewer.Quality SMOOTH
public static final JImageViewer.Quality BEST
public static JImageViewer.Quality[] values()
for (JImageViewer.Quality c : JImageViewer.Quality.values()) System.out.println(c);
public static JImageViewer.Quality 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 © 2004–2016. All rights reserved.