Enum MoMeshVizDataMapping.CellFilterType
- java.lang.Object
-
- java.lang.Enum<MoMeshVizDataMapping.CellFilterType>
-
- com.openinventor.meshvizxlm.mapping.MoMeshVizDataMapping.CellFilterType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MoMeshVizDataMapping.CellFilterType>
- Enclosing class:
- MoMeshVizDataMapping
public static enum MoMeshVizDataMapping.CellFilterType extends java.lang.Enum<MoMeshVizDataMapping.CellFilterType>
Type of cell filter.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CELL_FILTER_I
Cell Filter for unstructured meshesCELL_FILTER_IJ
Cell Filter for structured surface meshesCELL_FILTER_IJK
Cell Filter for structured volume meshesUNDEFINED_CELL_FILTER
Cell Filter not defined
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MoMeshVizDataMapping.CellFilterType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MoMeshVizDataMapping.CellFilterType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CELL_FILTER_I
public static final MoMeshVizDataMapping.CellFilterType CELL_FILTER_I
Cell Filter for unstructured meshes
-
CELL_FILTER_IJ
public static final MoMeshVizDataMapping.CellFilterType CELL_FILTER_IJ
Cell Filter for structured surface meshes
-
CELL_FILTER_IJK
public static final MoMeshVizDataMapping.CellFilterType CELL_FILTER_IJK
Cell Filter for structured volume meshes
-
UNDEFINED_CELL_FILTER
public static final MoMeshVizDataMapping.CellFilterType UNDEFINED_CELL_FILTER
Cell Filter not defined
-
-
Method Detail
-
values
public static MoMeshVizDataMapping.CellFilterType[] 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 (MoMeshVizDataMapping.CellFilterType c : MoMeshVizDataMapping.CellFilterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MoMeshVizDataMapping.CellFilterType 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
-
-