public enum ImageChoice extends Enum<ImageChoice>
Enum Constant and Description |
---|
CHESSBOARD
Chessboard pattern with 0 and 1 values.
|
INTERFERENCE
Complex interference pattern.
|
MANDELBROT
Binary image of the Mandelbrot set.
|
RIPPLES
Concentric, sinusoidal ripples.
|
SQUIRCLE
Sort of a square circle thing.
|
Modifier and Type | Method and Description |
---|---|
String |
getDestImageVarName() |
String |
toString() |
static ImageChoice |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageChoice[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageChoice CHESSBOARD
public static final ImageChoice INTERFERENCE
public static final ImageChoice MANDELBROT
public static final ImageChoice RIPPLES
public static final ImageChoice SQUIRCLE
public static ImageChoice[] values()
for (ImageChoice c : ImageChoice.values()) System.out.println(c);
public static ImageChoice 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 nullpublic String toString()
toString
in class Enum<ImageChoice>
public String getDestImageVarName()
Copyright © 2006–2018 GeoSolutions. All rights reserved.