Package com.openinventor.inventor.nodes
Enum SoEnvironment.FogTypes
- java.lang.Object
-
- java.lang.Enum<SoEnvironment.FogTypes>
-
- com.openinventor.inventor.nodes.SoEnvironment.FogTypes
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<SoEnvironment.FogTypes>
- Enclosing class:
- SoEnvironment
public static enum SoEnvironment.FogTypes extends java.lang.Enum<SoEnvironment.FogTypes> implements IntegerValuedEnum
Type of fog.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Returns the integer value of the enum constant.static SoEnvironment.FogTypes
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoEnvironment.FogTypes
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoEnvironment.FogTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final SoEnvironment.FogTypes NONE
No fog.
-
HAZE
public static final SoEnvironment.FogTypes HAZE
Linear increase in opacity with distance.
-
FOG
public static final SoEnvironment.FogTypes FOG
Exponential increase in opacity.
-
SMOKE
public static final SoEnvironment.FogTypes SMOKE
Exponential squared increase in opacity.
-
-
Method Detail
-
values
public static SoEnvironment.FogTypes[] 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 (SoEnvironment.FogTypes c : SoEnvironment.FogTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoEnvironment.FogTypes 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 namejava.lang.NullPointerException
- if the argument is null
-
valueOf
public static SoEnvironment.FogTypes valueOf(int val)
Returns the enum constant of this type with the specified integer value- Returns:
- the enum constant of this type with the specified integer value.
-
getValue
public int getValue()
Description copied from interface:IntegerValuedEnum
Returns the integer value of the enum constant.- Specified by:
getValue
in interfaceIntegerValuedEnum
- Returns:
- the integer value of the enum constant.
-
-