public interface StateVariableType extends BaseDataVariableType
| Modifier and Type | Field and Description |
|---|---|
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText> |
EFFECTIVE_DISPLAY_NAME |
static QualifiedProperty<Object> |
ID |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName> |
NAME |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> |
NUMBER |
| Modifier and Type | Method and Description |
|---|---|
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText |
getEffectiveDisplayName()
Get the local value of the EffectiveDisplayName Node.
|
PropertyType |
getEffectiveDisplayNameNode()
Get the EffectiveDisplayName
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getEffectiveDisplayNameNodeAsync()
Asynchronous implementation of
getEffectiveDisplayNameNode(). |
Object |
getId()
Get the local value of the Id Node.
|
PropertyType |
getIdNode()
Get the Id
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getIdNodeAsync()
Asynchronous implementation of
getIdNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName |
getName()
Get the local value of the Name Node.
|
PropertyType |
getNameNode()
Get the Name
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getNameNodeAsync()
Asynchronous implementation of
getNameNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger |
getNumber()
Get the local value of the Number Node.
|
PropertyType |
getNumberNode()
Get the Number
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getNumberNodeAsync()
Asynchronous implementation of
getNumberNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText |
readEffectiveDisplayName()
Read the value of the EffectiveDisplayName Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText> |
readEffectiveDisplayNameAsync()
An asynchronous implementation of
readEffectiveDisplayName(). |
Object |
readId()
Read the value of the Id Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<?> |
readIdAsync()
An asynchronous implementation of
readId(). |
org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName |
readName()
Read the value of the Name Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName> |
readNameAsync()
An asynchronous implementation of
readName(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger |
readNumber()
Read the value of the Number Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> |
readNumberAsync()
An asynchronous implementation of
readNumber(). |
void |
setEffectiveDisplayName(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText effectiveDisplayName)
Set the local value of the EffectiveDisplayName Node.
|
void |
setId(Object id)
Set the local value of the Id Node.
|
void |
setName(org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName name)
Set the local value of the Name Node.
|
void |
setNumber(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger number)
Set the local value of the Number Node.
|
void |
writeEffectiveDisplayName(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText effectiveDisplayName)
Write a new value for the EffectiveDisplayName Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeEffectiveDisplayNameAsync(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText effectiveDisplayName)
An asynchronous implementation of
writeEffectiveDisplayName(LocalizedText). |
void |
writeId(Object id)
Write a new value for the Id Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeIdAsync(Object id)
An asynchronous implementation of
writeId(Object). |
void |
writeName(org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName name)
Write a new value for the Name Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeNameAsync(org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName name)
An asynchronous implementation of
writeName(QualifiedName). |
void |
writeNumber(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger number)
Write a new value for the Number Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeNumberAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger number)
An asynchronous implementation of
writeNumber(UInteger). |
getAccessLevel, getArrayDimensions, getDataType, getHistorizing, getMinimumSamplingInterval, getUserAccessLevel, getValue, getValueRank, setAccessLevel, setArrayDimensions, setDataType, setHistorizing, setMinimumSamplingInterval, setUserAccessLevel, setValue, setValueRankgetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskstatic final QualifiedProperty<Object> ID
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName> NAME
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> NUMBER
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText> EFFECTIVE_DISPLAY_NAME
Object getId() 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 Id Node.void setId(Object id) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
id - the local value to set for the Id Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Id Node.Object readId() throws org.eclipse.milo.opcua.stack.core.UaException
Object value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeId(Object id) throws org.eclipse.milo.opcua.stack.core.UaException
id - the Object value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<?> readIdAsync()
readId().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeIdAsync(Object id)
writeId(Object).PropertyType getIdNode() 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> getIdNodeAsync()
getIdNode().org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName getName()
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 Name Node.void setName(org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName name)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
name - the local value to set for the Name Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Name Node.org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName readName()
throws org.eclipse.milo.opcua.stack.core.UaException
QualifiedName value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeName(org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName name)
throws org.eclipse.milo.opcua.stack.core.UaException
name - the QualifiedName 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.builtin.QualifiedName> readNameAsync()
readName().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeNameAsync(org.eclipse.milo.opcua.stack.core.types.builtin.QualifiedName name)
writeName(QualifiedName).PropertyType getNameNode() 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> getNameNodeAsync()
getNameNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getNumber()
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 Number Node.void setNumber(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger number)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
number - the local value to set for the Number Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Number Node.org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readNumber()
throws org.eclipse.milo.opcua.stack.core.UaException
UInteger value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeNumber(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger number)
throws org.eclipse.milo.opcua.stack.core.UaException
number - the UInteger 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.builtin.unsigned.UInteger> readNumberAsync()
readNumber().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeNumberAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger number)
writeNumber(UInteger).PropertyType getNumberNode() 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> getNumberNodeAsync()
getNumberNode().org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText getEffectiveDisplayName()
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 EffectiveDisplayName Node.void setEffectiveDisplayName(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText effectiveDisplayName)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
effectiveDisplayName - the local value to set for the EffectiveDisplayName Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the EffectiveDisplayName Node.org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText readEffectiveDisplayName()
throws org.eclipse.milo.opcua.stack.core.UaException
LocalizedText value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeEffectiveDisplayName(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText effectiveDisplayName)
throws org.eclipse.milo.opcua.stack.core.UaException
effectiveDisplayName - the LocalizedText 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.builtin.LocalizedText> readEffectiveDisplayNameAsync()
readEffectiveDisplayName().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeEffectiveDisplayNameAsync(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText effectiveDisplayName)
writeEffectiveDisplayName(LocalizedText).PropertyType getEffectiveDisplayNameNode() 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> getEffectiveDisplayNameNodeAsync()
getEffectiveDisplayNameNode().Copyright © 2021. All rights reserved.