public interface TransitionVariableType extends BaseDataVariableType
| Modifier and Type | Field and Description |
|---|---|
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.DateTime> |
EFFECTIVE_TRANSITION_TIME |
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 |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.DateTime> |
TRANSITION_TIME |
| Modifier and Type | Method and Description |
|---|---|
org.eclipse.milo.opcua.stack.core.types.builtin.DateTime |
getEffectiveTransitionTime()
Get the local value of the EffectiveTransitionTime Node.
|
PropertyType |
getEffectiveTransitionTimeNode()
Get the EffectiveTransitionTime
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getEffectiveTransitionTimeNodeAsync()
Asynchronous implementation of
getEffectiveTransitionTimeNode(). |
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.DateTime |
getTransitionTime()
Get the local value of the TransitionTime Node.
|
PropertyType |
getTransitionTimeNode()
Get the TransitionTime
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getTransitionTimeNodeAsync()
Asynchronous implementation of
getTransitionTimeNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.DateTime |
readEffectiveTransitionTime()
Read the value of the EffectiveTransitionTime Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.DateTime> |
readEffectiveTransitionTimeAsync()
An asynchronous implementation of
readEffectiveTransitionTime(). |
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(). |
org.eclipse.milo.opcua.stack.core.types.builtin.DateTime |
readTransitionTime()
Read the value of the TransitionTime Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.DateTime> |
readTransitionTimeAsync()
An asynchronous implementation of
readTransitionTime(). |
void |
setEffectiveTransitionTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime effectiveTransitionTime)
Set the local value of the EffectiveTransitionTime 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 |
setTransitionTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime transitionTime)
Set the local value of the TransitionTime Node.
|
void |
writeEffectiveTransitionTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime effectiveTransitionTime)
Write a new value for the EffectiveTransitionTime Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeEffectiveTransitionTimeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime effectiveTransitionTime)
An asynchronous implementation of
writeEffectiveTransitionTime(DateTime). |
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). |
void |
writeTransitionTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime transitionTime)
Write a new value for the TransitionTime Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeTransitionTimeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime transitionTime)
An asynchronous implementation of
writeTransitionTime(DateTime). |
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.DateTime> TRANSITION_TIME
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.DateTime> EFFECTIVE_TRANSITION_TIME
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.DateTime getTransitionTime()
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 TransitionTime Node.void setTransitionTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime transitionTime)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
transitionTime - the local value to set for the TransitionTime Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the TransitionTime Node.org.eclipse.milo.opcua.stack.core.types.builtin.DateTime readTransitionTime()
throws org.eclipse.milo.opcua.stack.core.UaException
DateTime value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeTransitionTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime transitionTime)
throws org.eclipse.milo.opcua.stack.core.UaException
transitionTime - the DateTime 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.DateTime> readTransitionTimeAsync()
readTransitionTime().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeTransitionTimeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime transitionTime)
writeTransitionTime(DateTime).PropertyType getTransitionTimeNode() 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> getTransitionTimeNodeAsync()
getTransitionTimeNode().org.eclipse.milo.opcua.stack.core.types.builtin.DateTime getEffectiveTransitionTime()
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 EffectiveTransitionTime Node.void setEffectiveTransitionTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime effectiveTransitionTime)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
effectiveTransitionTime - the local value to set for the EffectiveTransitionTime Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the EffectiveTransitionTime Node.org.eclipse.milo.opcua.stack.core.types.builtin.DateTime readEffectiveTransitionTime()
throws org.eclipse.milo.opcua.stack.core.UaException
DateTime value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeEffectiveTransitionTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime effectiveTransitionTime)
throws org.eclipse.milo.opcua.stack.core.UaException
effectiveTransitionTime - the DateTime 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.DateTime> readEffectiveTransitionTimeAsync()
readEffectiveTransitionTime().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeEffectiveTransitionTimeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime effectiveTransitionTime)
writeEffectiveTransitionTime(DateTime).PropertyType getEffectiveTransitionTimeNode() 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> getEffectiveTransitionTimeNodeAsync()
getEffectiveTransitionTimeNode().Copyright © 2021. All rights reserved.