Uses of Class
com.luciad.util.TLcdAngleUnit
Packages that use TLcdAngleUnit
Package
Description
Provides classes and interfaces for handling text, dates, numbers, and messages.
Basic utilities.
-
Uses of TLcdAngleUnit in com.luciad.text
Methods in com.luciad.text that return TLcdAngleUnitModifier and TypeMethodDescriptionTLcdAngleFormat.getDisplayUnit()
Returns the display unit.TLcdAngleFormat.getProgramUnit()
Returns the program unit.Methods in com.luciad.text with parameters of type TLcdAngleUnitModifier and TypeMethodDescriptionvoid
TLcdAngleFormat.setDisplayUnit
(TLcdAngleUnit aDisplayUnit) Sets the display unit.void
TLcdAngleFormat.setProgramUnit
(TLcdAngleUnit aProgramUnit) Sets the program unit.Constructors in com.luciad.text with parameters of type TLcdAngleUnitModifierConstructorDescriptionTLcdAngleFormat
(TLcdAngleUnit aDisplayUnit) Create an angle format with
program unit:TLcdAngleUnit.DEGREE
and the given display unitTLcdAngleFormat
(TLcdAngleUnit aProgramUnit, TLcdAngleUnit aDisplayUnit) Create an angle format with the given program unit and display unit. -
Uses of TLcdAngleUnit in com.luciad.util
Fields in com.luciad.util declared as TLcdAngleUnitModifier and TypeFieldDescriptionstatic final TLcdAngleUnit
TLcdAngleUnit.DEGREE
Constant defining angle as degrees (1° = 1/360 of a circle).static final TLcdAngleUnit
TLcdAngleUnit.GRADIAN
Constant defining angle as gradians (1 gon = 1/400 of a circle).static final TLcdAngleUnit
TLcdAngleUnit.MIL
Constant defining the angle in angular mils as defined by NATO (1/6400 of a circle).static final TLcdAngleUnit
TLcdAngleUnit.RADIAN
Constant defining angle as radians (1 rad = 1/(2Π) of a circle).Methods in com.luciad.util that return TLcdAngleUnitModifier and TypeMethodDescriptionstatic TLcdAngleUnit[]
TLcdAngleUnit.getAllAngleUnits()
Returns the available angle units to consider in a JVM session.Methods in com.luciad.util with parameters of type TLcdAngleUnitModifier and TypeMethodDescriptionstatic void
TLcdAngleUnit.addAngleUnit
(TLcdAngleUnit aAngleUnit) Adds the specified angle unit to the set of angle units which are registered for this JVM session.static void
TLcdAngleUnit.removeAngleUnit
(TLcdAngleUnit aAngleUnit) Removes the specified angle unit from the set of angle units which are registered for this JVM session.static void
TLcdAngleUnit.setAllAngleUnits
(TLcdAngleUnit[] aAngleUnits) Sets statically allTLcdAngleUnit
s to consider in a JVM session.