Package com.openinventor.meshviz.nodes
Enum PoMesh1DHints.GeomInterpretations
- java.lang.Object
-
- java.lang.Enum<PoMesh1DHints.GeomInterpretations>
-
- com.openinventor.meshviz.nodes.PoMesh1DHints.GeomInterpretations
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<PoMesh1DHints.GeomInterpretations>
- Enclosing class:
- PoMesh1DHints
public static enum PoMesh1DHints.GeomInterpretations extends java.lang.Enum<PoMesh1DHints.GeomInterpretations> implements IntegerValuedEnum
Interpretation Type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AS_IS
The geometry of the current mesh 1D is "as is" interpreted.HISTO_X
Y stair passing through all points.HISTO_Y
X stair no necessarily passing through all points.SMOOTH
The geometry of the current mesh 1D is smoothed by a cubic.STAIRS_2X
Y stair no necessarily passing through all points.STAIRS_2Y
double X stair passing through all points.STAIRS_X
spline.STAIRS_Y
X stair passing through all points.
-
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 PoMesh1DHints.GeomInterpretations
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic PoMesh1DHints.GeomInterpretations
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PoMesh1DHints.GeomInterpretations[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AS_IS
public static final PoMesh1DHints.GeomInterpretations AS_IS
The geometry of the current mesh 1D is "as is" interpreted.
-
SMOOTH
public static final PoMesh1DHints.GeomInterpretations SMOOTH
The geometry of the current mesh 1D is smoothed by a cubic.
-
STAIRS_X
public static final PoMesh1DHints.GeomInterpretations STAIRS_X
spline. The geometry of the current mesh 1D is interpreted as a
-
STAIRS_Y
public static final PoMesh1DHints.GeomInterpretations STAIRS_Y
X stair passing through all points. The geometry of the current mesh 1D is interpreted as a
-
HISTO_X
public static final PoMesh1DHints.GeomInterpretations HISTO_X
Y stair passing through all points. The geometry of the current mesh 1D is interpreted as a
-
HISTO_Y
public static final PoMesh1DHints.GeomInterpretations HISTO_Y
X stair no necessarily passing through all points. The geometry of the current mesh 1D is interpreted as a
-
STAIRS_2X
public static final PoMesh1DHints.GeomInterpretations STAIRS_2X
Y stair no necessarily passing through all points. The geometry of the current mesh 1D is interpreted as a
-
STAIRS_2Y
public static final PoMesh1DHints.GeomInterpretations STAIRS_2Y
double X stair passing through all points. The geometry of the current mesh 1D is interpreted as a double Y stair passing through all points.
-
-
Method Detail
-
values
public static PoMesh1DHints.GeomInterpretations[] 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 (PoMesh1DHints.GeomInterpretations c : PoMesh1DHints.GeomInterpretations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PoMesh1DHints.GeomInterpretations 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 PoMesh1DHints.GeomInterpretations 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.
-
-