Package com.openinventor.inventor.nodes
Enum SoColorMap.PredefinedColorMaps
- java.lang.Object
-
- java.lang.Enum<SoColorMap.PredefinedColorMaps>
-
- com.openinventor.inventor.nodes.SoColorMap.PredefinedColorMaps
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<SoColorMap.PredefinedColorMaps>
- Enclosing class:
- SoColorMap
public static enum SoColorMap.PredefinedColorMaps extends java.lang.Enum<SoColorMap.PredefinedColorMaps> implements IntegerValuedEnum
Predefined color map.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AIRWAY
Airway.AIRWAY_SURFACES
Airway surfaces.BLUE_RED
Blue red.BLUE_WHITE_RED
Blue white red.GLOW
Glow.GRAY
Gray (Default)INTENSITY
Intensity.INTENSITY_REVERSED
Intensity reversed.LABEL_256
256 labelsNONE
None.PHYSICS
Physics.SEISMIC
Seismic.STANDARD
Standard.TEMPERATURE
Temperature.VOLREN_GREEN
VolRenGreen.VOLREN_RED
VolRenRed.
-
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 SoColorMap.PredefinedColorMaps
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoColorMap.PredefinedColorMaps
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoColorMap.PredefinedColorMaps[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final SoColorMap.PredefinedColorMaps NONE
None.
-
GRAY
public static final SoColorMap.PredefinedColorMaps GRAY
Gray (Default)
-
TEMPERATURE
public static final SoColorMap.PredefinedColorMaps TEMPERATURE
Temperature.
-
PHYSICS
public static final SoColorMap.PredefinedColorMaps PHYSICS
Physics.
-
STANDARD
public static final SoColorMap.PredefinedColorMaps STANDARD
Standard.
-
GLOW
public static final SoColorMap.PredefinedColorMaps GLOW
Glow.
-
BLUE_RED
public static final SoColorMap.PredefinedColorMaps BLUE_RED
Blue red.
-
SEISMIC
public static final SoColorMap.PredefinedColorMaps SEISMIC
Seismic.
-
BLUE_WHITE_RED
public static final SoColorMap.PredefinedColorMaps BLUE_WHITE_RED
Blue white red.
-
INTENSITY
public static final SoColorMap.PredefinedColorMaps INTENSITY
Intensity.
-
LABEL_256
public static final SoColorMap.PredefinedColorMaps LABEL_256
256 labels
-
VOLREN_RED
public static final SoColorMap.PredefinedColorMaps VOLREN_RED
VolRenRed.
-
VOLREN_GREEN
public static final SoColorMap.PredefinedColorMaps VOLREN_GREEN
VolRenGreen.
-
AIRWAY
public static final SoColorMap.PredefinedColorMaps AIRWAY
Airway.
-
AIRWAY_SURFACES
public static final SoColorMap.PredefinedColorMaps AIRWAY_SURFACES
Airway surfaces.
-
INTENSITY_REVERSED
public static final SoColorMap.PredefinedColorMaps INTENSITY_REVERSED
Intensity reversed.
-
-
Method Detail
-
values
public static SoColorMap.PredefinedColorMaps[] 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 (SoColorMap.PredefinedColorMaps c : SoColorMap.PredefinedColorMaps.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoColorMap.PredefinedColorMaps 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 SoColorMap.PredefinedColorMaps 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.
-
-