- All Implemented Interfaces:
Serializable,Comparable<TransferFunctionType>
@UML(identifier="MI_TransferFunctionTypeCode",
specification=ISO_19115_2)
public final class TransferFunctionType
extends CodeList<TransferFunctionType>
Transform function to be used when scaling a physical value for a given element.
- Since:
- 2.3
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class CodeList
CodeList.Filter -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TransferFunctionTypeFunction used for transformation is exponential.static final TransferFunctionTypeFunction used for transformation is first order polynomial.static final TransferFunctionTypeFunction used for transformation is logarithmic -
Method Summary
Modifier and TypeMethodDescriptionfamily()Returns the list of enumerations of the same kind as this enum.static TransferFunctionTypeReturns the transfer function type that matches the given string, or returns a new one if none match it.static TransferFunctionType[]values()Returns the list ofTransferFunctionTypes.
-
Field Details
-
LINEAR
@UML(identifier="linear", obligation=CONDITIONAL, specification=ISO_19115_2) public static final TransferFunctionType LINEARFunction used for transformation is first order polynomial. -
LOGARITHMIC
@UML(identifier="logarithmic", obligation=CONDITIONAL, specification=ISO_19115_2) public static final TransferFunctionType LOGARITHMICFunction used for transformation is logarithmic -
EXPONENTIAL
@UML(identifier="exponential", obligation=CONDITIONAL, specification=ISO_19115_2) public static final TransferFunctionType EXPONENTIALFunction used for transformation is exponential.
-
-
Method Details
-
values
Returns the list ofTransferFunctionTypes.- Returns:
- The list of codes declared in the current JVM.
-
family
Returns the list of enumerations of the same kind as this enum.- Specified by:
familyin classCodeList<TransferFunctionType>- Returns:
- The codes of the same kind as this code.
-
valueOf
Returns the transfer function type that matches the given string, or returns a new one if none match it.- Parameters:
code- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-