Package com.jme3.post.filters
Enum Class BloomFilter.GlowMode
- All Implemented Interfaces:
Serializable
,Comparable<BloomFilter.GlowMode>
,Constable
- Enclosing class:
- BloomFilter
GlowMode specifies if the glow will be applied to the whole scene or to objects that have a glow color or a glow map
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionApply bloom only to objects that have a glow map or a glow color.Apply bloom filter to bright areas in the scene.Apply bloom to both bright parts of the scene and objects with glow map. -
Method Summary
Modifier and TypeMethodDescriptionstatic BloomFilter.GlowMode
Returns the enum constant of this class with the specified name.static BloomFilter.GlowMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Scene
Apply bloom filter to bright areas in the scene. -
Objects
Apply bloom only to objects that have a glow map or a glow color. -
SceneAndObjects
Apply bloom to both bright parts of the scene and objects with glow map.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-