deadbeef.SupTools
Enum Core.ScalingFilters

java.lang.Object
  extended by java.lang.Enum<Core.ScalingFilters>
      extended by deadbeef.SupTools.Core.ScalingFilters
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Core.ScalingFilters>
Enclosing class:
Core

public static enum Core.ScalingFilters
extends java.lang.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

BILINEAR

public static final Core.ScalingFilters BILINEAR
Bilinear filter


TRIANGLE

public static final Core.ScalingFilters TRIANGLE
Triangle filter


BICUBIC

public static final Core.ScalingFilters BICUBIC
Bicubic filter


BELL

public static final Core.ScalingFilters BELL
Bell filter


BSPLINE

public static final Core.ScalingFilters BSPLINE
Bicubic spline filter


HERMITE

public static final Core.ScalingFilters HERMITE
Hermite filter


LANCZOS3

public static final Core.ScalingFilters LANCZOS3
Lanczos3 filter


MITCHELL

public static final Core.ScalingFilters MITCHELL
Mitchell filter

Method Detail

values

public static Core.ScalingFilters[] 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 (Core.ScalingFilters c : Core.ScalingFilters.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Core.ScalingFilters valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null