Package com.openinventor.inventor
Enum Class SoDB.RenderCacheModes
- All Implemented Interfaces:
IntegerValuedEnum
,Serializable
,Comparable<SoDB.RenderCacheModes>
,Constable
- Enclosing class:
SoDB
@Deprecated(since="10.3.0.0")
public static enum SoDB.RenderCacheModes
extends Enum<SoDB.RenderCacheModes>
implements IntegerValuedEnum
Deprecated.
As of Open Inventor 10.3.0.0. RenderCacheMode is no longer used.
Render cache modes.
Warning Deprecated since Open Inventor 10300. RenderCacheMode is no longer used.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated.Automatically choose mode depending on the hardware.Deprecated.Display lists are created with COMPILE mode.Deprecated.Display lists are created with COMPILE_AND_EXECUTE mode. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Deprecated.Returns the integer value of the enum constant.static SoDB.RenderCacheModes
valueOf
(int val) Deprecated.Returns the enum constant of this type with the specified integer valuestatic SoDB.RenderCacheModes
Deprecated.Returns the enum constant of this class with the specified name.static SoDB.RenderCacheModes[]
values()
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
COMPILE
Deprecated.Display lists are created with COMPILE mode. -
COMPILE_AND_EXECUTE
Deprecated.Display lists are created with COMPILE_AND_EXECUTE mode. -
AUTO_RENDER_CACHE
Deprecated.Automatically choose mode depending on the hardware. (Default).
-
-
Method Details
-
values
Deprecated.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
Deprecated.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
-
valueOf
Deprecated.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()Deprecated.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.
-