|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Core.ScalingFilters>
deadbeef.SupTools.Core.ScalingFilters
public static enum Core.ScalingFilters
Enumeration of filters that can be applied for scaling
Enum Constant Summary | |
---|---|
BELL
Bell filter |
|
BICUBIC
Bicubic filter |
|
BILINEAR
Bilinear filter |
|
BSPLINE
Bicubic spline filter |
|
HERMITE
Hermite filter |
|
LANCZOS3
Lanczos3 filter |
|
MITCHELL
Mitchell filter |
|
TRIANGLE
Triangle filter |
Method Summary | |
---|---|
static Core.ScalingFilters |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Core.ScalingFilters[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 Core.ScalingFilters BILINEAR
public static final Core.ScalingFilters TRIANGLE
public static final Core.ScalingFilters BICUBIC
public static final Core.ScalingFilters BELL
public static final Core.ScalingFilters BSPLINE
public static final Core.ScalingFilters HERMITE
public static final Core.ScalingFilters LANCZOS3
public static final Core.ScalingFilters MITCHELL
Method Detail |
---|
public static Core.ScalingFilters[] values()
for (Core.ScalingFilters c : Core.ScalingFilters.values()) System.out.println(c);
public static Core.ScalingFilters 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 null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |