|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Filter>
com.b3dgs.lionengine.core.Filter
public enum Filter
List of supported filters. Note: HQ3X has to scale the height reference by 3. (if ref is 320*240, final size has to be 960*720 or 1280*720).
Enum Constant Summary | |
---|---|
BILINEAR
Bilinear filtering, bluring pixels. |
|
HQ3X
hq3x filtering, giving a special result as a painted image (may be slow !). |
|
NONE
No filter. |
Method Summary | |
---|---|
static Filter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Filter[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 Filter NONE
public static final Filter BILINEAR
public static final Filter HQ3X
Method Detail |
---|
public static Filter[] values()
for (Filter c : Filter.values()) System.out.println(c);
public static Filter 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 |