All Superinterfaces:
BaseObjectType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode, UnitType
All Known Implementing Classes:
AlternativeUnitTypeNode

public interface AlternativeUnitType extends UnitType
See Also:
  • Field Details

    • LINEAR_CONVERSION

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.LinearConversionDataType> LINEAR_CONVERSION
    • MATH_ML_CONVERSION

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<String> MATH_ML_CONVERSION
    • MATH_ML_INVERSE_CONVERSION

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<String> MATH_ML_INVERSE_CONVERSION
  • Method Details

    • getLinearConversion

      org.eclipse.milo.opcua.stack.core.types.structured.LinearConversionDataType getLinearConversion() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the LinearConversion Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the LinearConversion Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the LinearConversion Node.
    • setLinearConversion

      void setLinearConversion(org.eclipse.milo.opcua.stack.core.types.structured.LinearConversionDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the LinearConversion Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the LinearConversion Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the LinearConversion Node.
    • readLinearConversion

      org.eclipse.milo.opcua.stack.core.types.structured.LinearConversionDataType readLinearConversion() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the LinearConversion Node from the server and update the local value if the operation succeeds.
      Returns:
      the LinearConversionDataType value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeLinearConversion

      void writeLinearConversion(org.eclipse.milo.opcua.stack.core.types.structured.LinearConversionDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the LinearConversion Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the LinearConversionDataType value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readLinearConversionAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.LinearConversionDataType> readLinearConversionAsync()
      An asynchronous implementation of readLinearConversion().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeLinearConversionAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeLinearConversionAsync(org.eclipse.milo.opcua.stack.core.types.structured.LinearConversionDataType value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getLinearConversionNode

      PropertyType getLinearConversionNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the LinearConversion PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the LinearConversion PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getLinearConversionNodeAsync

      CompletableFuture<? extends PropertyType> getLinearConversionNodeAsync()
      Asynchronous implementation of getLinearConversionNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMathMlConversion

      String getMathMlConversion() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MathMLConversion Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MathMLConversion Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MathMLConversion Node.
    • setMathMlConversion

      void setMathMlConversion(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the MathMLConversion Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MathMLConversion Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MathMLConversion Node.
    • readMathMlConversion

      String readMathMlConversion() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MathMLConversion Node from the server and update the local value if the operation succeeds.
      Returns:
      the String value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMathMlConversion

      void writeMathMlConversion(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the MathMLConversion Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the String value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMathMlConversionAsync

      CompletableFuture<? extends String> readMathMlConversionAsync()
      An asynchronous implementation of readMathMlConversion().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMathMlConversionAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMathMlConversionAsync(String value)
      An asynchronous implementation of writeMathMlConversion(java.lang.String).
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMathMlConversionNode

      PropertyType getMathMlConversionNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MathMLConversion PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MathMLConversion PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMathMlConversionNodeAsync

      CompletableFuture<? extends PropertyType> getMathMlConversionNodeAsync()
      Asynchronous implementation of getMathMlConversionNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMathMlInverseConversion

      String getMathMlInverseConversion() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MathMLInverseConversion Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MathMLInverseConversion Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MathMLInverseConversion Node.
    • setMathMlInverseConversion

      void setMathMlInverseConversion(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the MathMLInverseConversion Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MathMLInverseConversion Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MathMLInverseConversion Node.
    • readMathMlInverseConversion

      String readMathMlInverseConversion() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MathMLInverseConversion Node from the server and update the local value if the operation succeeds.
      Returns:
      the String value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMathMlInverseConversion

      void writeMathMlInverseConversion(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the MathMLInverseConversion Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the String value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMathMlInverseConversionAsync

      CompletableFuture<? extends String> readMathMlInverseConversionAsync()
      An asynchronous implementation of readMathMlInverseConversion().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMathMlInverseConversionAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMathMlInverseConversionAsync(String value)
      An asynchronous implementation of writeMathMlInverseConversion(java.lang.String).
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMathMlInverseConversionNode

      PropertyType getMathMlInverseConversionNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MathMLInverseConversion PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MathMLInverseConversion PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMathMlInverseConversionNodeAsync

      CompletableFuture<? extends PropertyType> getMathMlInverseConversionNodeAsync()
      Asynchronous implementation of getMathMlInverseConversionNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.