public interface AnalogItemType extends DataItemType
Modifier and Type | Field and Description |
---|---|
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.EUInformation> |
ENGINEERING_UNITS |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.Range> |
EU_RANGE |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.Range> |
INSTRUMENT_RANGE |
DEFINITION, VALUE_PRECISION
Modifier and Type | Method and Description |
---|---|
org.eclipse.milo.opcua.stack.core.types.structured.EUInformation |
getEngineeringUnits()
Get the local value of the EngineeringUnits Node.
|
PropertyType |
getEngineeringUnitsNode()
Get the EngineeringUnits
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getEngineeringUnitsNodeAsync()
Asynchronous implementation of
getEngineeringUnitsNode() . |
org.eclipse.milo.opcua.stack.core.types.structured.Range |
getEuRange()
Get the local value of the EURange Node.
|
PropertyType |
getEuRangeNode()
Get the EURange
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getEuRangeNodeAsync()
Asynchronous implementation of
getEuRangeNode() . |
org.eclipse.milo.opcua.stack.core.types.structured.Range |
getInstrumentRange()
Get the local value of the InstrumentRange Node.
|
PropertyType |
getInstrumentRangeNode()
Get the InstrumentRange
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getInstrumentRangeNodeAsync()
Asynchronous implementation of
getInstrumentRangeNode() . |
org.eclipse.milo.opcua.stack.core.types.structured.EUInformation |
readEngineeringUnits()
Read the value of the EngineeringUnits Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.EUInformation> |
readEngineeringUnitsAsync()
An asynchronous implementation of
readEngineeringUnits() . |
org.eclipse.milo.opcua.stack.core.types.structured.Range |
readEuRange()
Read the value of the EURange Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.Range> |
readEuRangeAsync()
An asynchronous implementation of
readEuRange() . |
org.eclipse.milo.opcua.stack.core.types.structured.Range |
readInstrumentRange()
Read the value of the InstrumentRange Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.Range> |
readInstrumentRangeAsync()
An asynchronous implementation of
readInstrumentRange() . |
void |
setEngineeringUnits(org.eclipse.milo.opcua.stack.core.types.structured.EUInformation engineeringUnits)
Set the local value of the EngineeringUnits Node.
|
void |
setEuRange(org.eclipse.milo.opcua.stack.core.types.structured.Range euRange)
Set the local value of the EURange Node.
|
void |
setInstrumentRange(org.eclipse.milo.opcua.stack.core.types.structured.Range instrumentRange)
Set the local value of the InstrumentRange Node.
|
void |
writeEngineeringUnits(org.eclipse.milo.opcua.stack.core.types.structured.EUInformation engineeringUnits)
Write a new value for the EngineeringUnits Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeEngineeringUnitsAsync(org.eclipse.milo.opcua.stack.core.types.structured.EUInformation engineeringUnits)
An asynchronous implementation of
writeEngineeringUnits(EUInformation) . |
void |
writeEuRange(org.eclipse.milo.opcua.stack.core.types.structured.Range euRange)
Write a new value for the EURange Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeEuRangeAsync(org.eclipse.milo.opcua.stack.core.types.structured.Range euRange)
An asynchronous implementation of
writeEuRange(Range) . |
void |
writeInstrumentRange(org.eclipse.milo.opcua.stack.core.types.structured.Range instrumentRange)
Write a new value for the InstrumentRange Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeInstrumentRangeAsync(org.eclipse.milo.opcua.stack.core.types.structured.Range instrumentRange)
An asynchronous implementation of
writeInstrumentRange(Range) . |
getDefinition, getDefinitionNode, getDefinitionNodeAsync, getValuePrecision, getValuePrecisionNode, getValuePrecisionNodeAsync, readDefinition, readDefinitionAsync, readValuePrecision, readValuePrecisionAsync, setDefinition, setValuePrecision, writeDefinition, writeDefinitionAsync, writeValuePrecision, writeValuePrecisionAsync
getAccessLevel, getArrayDimensions, getDataType, getHistorizing, getMinimumSamplingInterval, getUserAccessLevel, getValue, getValueRank, setAccessLevel, setArrayDimensions, setDataType, setHistorizing, setMinimumSamplingInterval, setUserAccessLevel, setValue, setValueRank
getBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMask
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.Range> INSTRUMENT_RANGE
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.Range> EU_RANGE
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.EUInformation> ENGINEERING_UNITS
org.eclipse.milo.opcua.stack.core.types.structured.Range getInstrumentRange() throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException
- if an error occurs creating or getting the InstrumentRange Node.void setInstrumentRange(org.eclipse.milo.opcua.stack.core.types.structured.Range instrumentRange) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
instrumentRange
- the local value to set for the InstrumentRange Node.org.eclipse.milo.opcua.stack.core.UaException
- if an error occurs creating or getting the InstrumentRange Node.org.eclipse.milo.opcua.stack.core.types.structured.Range readInstrumentRange() throws org.eclipse.milo.opcua.stack.core.UaException
Range
value read from the server.org.eclipse.milo.opcua.stack.core.UaException
- if a service- or operation-level error occurs.void writeInstrumentRange(org.eclipse.milo.opcua.stack.core.types.structured.Range instrumentRange) throws org.eclipse.milo.opcua.stack.core.UaException
instrumentRange
- the Range
value to write to the server.org.eclipse.milo.opcua.stack.core.UaException
- if a service- or operation-level error occurs.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.Range> readInstrumentRangeAsync()
readInstrumentRange()
.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeInstrumentRangeAsync(org.eclipse.milo.opcua.stack.core.types.structured.Range instrumentRange)
writeInstrumentRange(Range)
.PropertyType getInstrumentRangeNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType
Node, or null
if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType
Node, or null
if it does not exist.org.eclipse.milo.opcua.stack.core.UaException
- if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getInstrumentRangeNodeAsync()
getInstrumentRangeNode()
.org.eclipse.milo.opcua.stack.core.types.structured.Range getEuRange() throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException
- if an error occurs creating or getting the EURange Node.void setEuRange(org.eclipse.milo.opcua.stack.core.types.structured.Range euRange) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
euRange
- the local value to set for the EURange Node.org.eclipse.milo.opcua.stack.core.UaException
- if an error occurs creating or getting the EURange Node.org.eclipse.milo.opcua.stack.core.types.structured.Range readEuRange() throws org.eclipse.milo.opcua.stack.core.UaException
Range
value read from the server.org.eclipse.milo.opcua.stack.core.UaException
- if a service- or operation-level error occurs.void writeEuRange(org.eclipse.milo.opcua.stack.core.types.structured.Range euRange) throws org.eclipse.milo.opcua.stack.core.UaException
euRange
- the Range
value to write to the server.org.eclipse.milo.opcua.stack.core.UaException
- if a service- or operation-level error occurs.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.Range> readEuRangeAsync()
readEuRange()
.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeEuRangeAsync(org.eclipse.milo.opcua.stack.core.types.structured.Range euRange)
writeEuRange(Range)
.PropertyType getEuRangeNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType
Node, or null
if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType
Node, or null
if it does not exist.org.eclipse.milo.opcua.stack.core.UaException
- if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getEuRangeNodeAsync()
getEuRangeNode()
.org.eclipse.milo.opcua.stack.core.types.structured.EUInformation getEngineeringUnits() throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException
- if an error occurs creating or getting the EngineeringUnits Node.void setEngineeringUnits(org.eclipse.milo.opcua.stack.core.types.structured.EUInformation engineeringUnits) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
engineeringUnits
- the local value to set for the EngineeringUnits Node.org.eclipse.milo.opcua.stack.core.UaException
- if an error occurs creating or getting the EngineeringUnits Node.org.eclipse.milo.opcua.stack.core.types.structured.EUInformation readEngineeringUnits() throws org.eclipse.milo.opcua.stack.core.UaException
EUInformation
value read from the server.org.eclipse.milo.opcua.stack.core.UaException
- if a service- or operation-level error occurs.void writeEngineeringUnits(org.eclipse.milo.opcua.stack.core.types.structured.EUInformation engineeringUnits) throws org.eclipse.milo.opcua.stack.core.UaException
engineeringUnits
- the EUInformation
value to write to the server.org.eclipse.milo.opcua.stack.core.UaException
- if a service- or operation-level error occurs.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.EUInformation> readEngineeringUnitsAsync()
readEngineeringUnits()
.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeEngineeringUnitsAsync(org.eclipse.milo.opcua.stack.core.types.structured.EUInformation engineeringUnits)
writeEngineeringUnits(EUInformation)
.PropertyType getEngineeringUnitsNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType
Node, or null
if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType
Node, or null
if it does not exist.org.eclipse.milo.opcua.stack.core.UaException
- if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getEngineeringUnitsNodeAsync()
getEngineeringUnitsNode()
.Copyright © 2020. All rights reserved.