Package com.luciad.view.lightspeed.style
Enum Class TLspComplexStrokedLineStyle.ComplexStrokeOrientation
java.lang.Object
java.lang.Enum<TLspComplexStrokedLineStyle.ComplexStrokeOrientation>
com.luciad.view.lightspeed.style.TLspComplexStrokedLineStyle.ComplexStrokeOrientation
- All Implemented Interfaces:
Serializable
,Comparable<TLspComplexStrokedLineStyle.ComplexStrokeOrientation>
,Constable
- Enclosing class:
TLspComplexStrokedLineStyle
public static enum TLspComplexStrokedLineStyle.ComplexStrokeOrientation
extends Enum<TLspComplexStrokedLineStyle.ComplexStrokeOrientation>
The orientation of the area that is used to render the complex stroke on for 3D lines.
- Since:
- 2024.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe area that is used to render the complex stroke faces the camera.The area that is used to render the complex stroke is parallel to the earth surface. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CAMERA_FACING
The area that is used to render the complex stroke faces the camera. The complex stroke will always be visible, but it may be deformed in some camera positions. -
PARALLEL_TO_EARTH_SURFACE
The area that is used to render the complex stroke is parallel to the earth surface. Deformations are limited, but when tilting the camera the line can become very thin and hard to see.
-
-
Method Details
-
values
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
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
-