Package com.luciad.earth.view.gxy.util
Enum Class ALcdEarth2DVectorIcon.Parameterization
java.lang.Object
java.lang.Enum<ALcdEarth2DVectorIcon.Parameterization>
com.luciad.earth.view.gxy.util.ALcdEarth2DVectorIcon.Parameterization
- All Implemented Interfaces:
Serializable
,Comparable<ALcdEarth2DVectorIcon.Parameterization>
,Constable
- Enclosing class:
ALcdEarth2DVectorIcon
public static enum ALcdEarth2DVectorIcon.Parameterization
extends Enum<ALcdEarth2DVectorIcon.Parameterization>
A 2-dimensional vector parameterization.
- Since:
- 10.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe parameter is interpreted as an angle (in radians).The parameters are interpreted as the angle (in radians) and strength.The parameters are interpreted as the horizontal and vertical strength. -
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
-
STRENGTH_2D
The parameters are interpreted as the horizontal and vertical strength. -
ANGLE_AND_STRENGTH
The parameters are interpreted as the angle (in radians) and strength. The angle is measured from 3 o'clock position, positive counter-clockwise. -
ANGLE
The parameter is interpreted as an angle (in radians). The angle is measured from 3 o'clock position, positive counter-clockwise.
-
-
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
-