Package org.openjump.core.rasterimage
Enum OverviewsUtils.ScaleAlgorithm
- java.lang.Object
-
- java.lang.Enum<OverviewsUtils.ScaleAlgorithm>
-
- org.openjump.core.rasterimage.OverviewsUtils.ScaleAlgorithm
-
- All Implemented Interfaces:
Serializable
,Comparable<OverviewsUtils.ScaleAlgorithm>
- Enclosing class:
- OverviewsUtils
public static enum OverviewsUtils.ScaleAlgorithm extends Enum<OverviewsUtils.ScaleAlgorithm>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVERAGE
BICUBIC
BILINEAR
NEAREST_NEIGHBOUR
SUBSAMPLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OverviewsUtils.ScaleAlgorithm
valueOf(String name)
Returns the enum constant of this type with the specified name.static OverviewsUtils.ScaleAlgorithm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVERAGE
public static final OverviewsUtils.ScaleAlgorithm AVERAGE
-
SUBSAMPLE
public static final OverviewsUtils.ScaleAlgorithm SUBSAMPLE
-
BILINEAR
public static final OverviewsUtils.ScaleAlgorithm BILINEAR
-
NEAREST_NEIGHBOUR
public static final OverviewsUtils.ScaleAlgorithm NEAREST_NEIGHBOUR
-
BICUBIC
public static final OverviewsUtils.ScaleAlgorithm BICUBIC
-
-
Method Detail
-
values
public static OverviewsUtils.ScaleAlgorithm[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OverviewsUtils.ScaleAlgorithm c : OverviewsUtils.ScaleAlgorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OverviewsUtils.ScaleAlgorithm valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-