Enum Class BillboardDataset.HeightProfile
- All Implemented Interfaces:
Serializable, Comparable<BillboardDataset.HeightProfile>, Constable
- Enclosing class:
BillboardDataset
Vertical dispersion profile, with
BillboardDataset.heightScale as base.-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionConstant over radius.Decreasing linearly with radius.Increasing linearly with radius.Decreasing smoothly with radius (smoothstep).Increasing smoothly with radius (smoothstep). -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static BillboardDataset.HeightProfile[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONSTANT
Constant over radius. -
LINEAR_INC
Increasing linearly with radius. -
LINEAR_DEC
Decreasing linearly with radius. -
SMOOTH_INC
Increasing smoothly with radius (smoothstep). -
SMOOTH_DEC
Decreasing smoothly with radius (smoothstep).
-
-
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
-