|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EffectBlur.BlurType>
cz.cuni.jagrlib.piece.EffectBlur.BlurType
protected static enum EffectBlur.BlurType
Implemented blur types.
Enum Constant Summary | |
---|---|
BLUR_CONSTANT
Linear constant blur (motion blur). |
|
BLUR_LINEAR
Linear blur (distance from the given line). |
|
BLUR_PERPENDICULAR
Linear perpendicular blur (distance from the given line). |
|
BLUR_RADIAL
Radial blur. |
|
BLUR_TANGENTIAL
Tangential blur. |
Method Summary | |
---|---|
static EffectBlur.BlurType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EffectBlur.BlurType[] |
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 EffectBlur.BlurType BLUR_RADIAL
public static final EffectBlur.BlurType BLUR_TANGENTIAL
public static final EffectBlur.BlurType BLUR_LINEAR
public static final EffectBlur.BlurType BLUR_PERPENDICULAR
public static final EffectBlur.BlurType BLUR_CONSTANT
Method Detail |
---|
public static EffectBlur.BlurType[] values()
for (EffectBlur.BlurType c : EffectBlur.BlurType.values()) System.out.println(c);
public static EffectBlur.BlurType 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 |