public interface FileType extends BaseObjectType
| Modifier and Type | Field and Description |
|---|---|
static QualifiedProperty<String> |
MIME_TYPE |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> |
OPEN_COUNT |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong> |
SIZE |
static QualifiedProperty<Boolean> |
USER_WRITABLE |
static QualifiedProperty<Boolean> |
WRITABLE |
| Modifier and Type | Method and Description |
|---|---|
String |
getMimeType()
Get the local value of the MimeType Node.
|
PropertyType |
getMimeTypeNode()
Get the MimeType
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getMimeTypeNodeAsync()
Asynchronous implementation of
getMimeTypeNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort |
getOpenCount()
Get the local value of the OpenCount Node.
|
PropertyType |
getOpenCountNode()
Get the OpenCount
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getOpenCountNodeAsync()
Asynchronous implementation of
getOpenCountNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong |
getSize()
Get the local value of the Size Node.
|
PropertyType |
getSizeNode()
Get the Size
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getSizeNodeAsync()
Asynchronous implementation of
getSizeNode(). |
Boolean |
getUserWritable()
Get the local value of the UserWritable Node.
|
PropertyType |
getUserWritableNode()
Get the UserWritable
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getUserWritableNodeAsync()
Asynchronous implementation of
getUserWritableNode(). |
Boolean |
getWritable()
Get the local value of the Writable Node.
|
PropertyType |
getWritableNode()
Get the Writable
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getWritableNodeAsync()
Asynchronous implementation of
getWritableNode(). |
String |
readMimeType()
Read the value of the MimeType Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends String> |
readMimeTypeAsync()
An asynchronous implementation of
readMimeType(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort |
readOpenCount()
Read the value of the OpenCount Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> |
readOpenCountAsync()
An asynchronous implementation of
readOpenCount(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong |
readSize()
Read the value of the Size Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong> |
readSizeAsync()
An asynchronous implementation of
readSize(). |
Boolean |
readUserWritable()
Read the value of the UserWritable Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends Boolean> |
readUserWritableAsync()
An asynchronous implementation of
readUserWritable(). |
Boolean |
readWritable()
Read the value of the Writable Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends Boolean> |
readWritableAsync()
An asynchronous implementation of
readWritable(). |
void |
setMimeType(String mimeType)
Set the local value of the MimeType Node.
|
void |
setOpenCount(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort openCount)
Set the local value of the OpenCount Node.
|
void |
setSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong size)
Set the local value of the Size Node.
|
void |
setUserWritable(Boolean userWritable)
Set the local value of the UserWritable Node.
|
void |
setWritable(Boolean writable)
Set the local value of the Writable Node.
|
void |
writeMimeType(String mimeType)
Write a new value for the MimeType Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeMimeTypeAsync(String mimeType)
An asynchronous implementation of
writeMimeType(String). |
void |
writeOpenCount(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort openCount)
Write a new value for the OpenCount Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeOpenCountAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort openCount)
An asynchronous implementation of
writeOpenCount(UShort). |
void |
writeSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong size)
Write a new value for the Size Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeSizeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong size)
An asynchronous implementation of
writeSize(ULong). |
void |
writeUserWritable(Boolean userWritable)
Write a new value for the UserWritable Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeUserWritableAsync(Boolean userWritable)
An asynchronous implementation of
writeUserWritable(Boolean). |
void |
writeWritable(Boolean writable)
Write a new value for the Writable Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeWritableAsync(Boolean writable)
An asynchronous implementation of
writeWritable(Boolean). |
getEventNotifier, setEventNotifiergetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskstatic final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong> SIZE
static final QualifiedProperty<Boolean> WRITABLE
static final QualifiedProperty<Boolean> USER_WRITABLE
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> OPEN_COUNT
static final QualifiedProperty<String> MIME_TYPE
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong getSize()
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 Size Node.void setSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong size)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
size - the local value to set for the Size Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Size Node.org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong readSize()
throws org.eclipse.milo.opcua.stack.core.UaException
ULong value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong size)
throws org.eclipse.milo.opcua.stack.core.UaException
size - the ULong 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.ULong> readSizeAsync()
readSize().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeSizeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong size)
writeSize(ULong).PropertyType getSizeNode() 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> getSizeNodeAsync()
getSizeNode().Boolean getWritable() 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 Writable Node.void setWritable(Boolean writable) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
writable - the local value to set for the Writable Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Writable Node.Boolean readWritable() throws org.eclipse.milo.opcua.stack.core.UaException
Boolean value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeWritable(Boolean writable) throws org.eclipse.milo.opcua.stack.core.UaException
writable - the Boolean value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends Boolean> readWritableAsync()
readWritable().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeWritableAsync(Boolean writable)
writeWritable(Boolean).PropertyType getWritableNode() 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> getWritableNodeAsync()
getWritableNode().Boolean getUserWritable() 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 UserWritable Node.void setUserWritable(Boolean userWritable) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
userWritable - the local value to set for the UserWritable Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the UserWritable Node.Boolean readUserWritable() throws org.eclipse.milo.opcua.stack.core.UaException
Boolean value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeUserWritable(Boolean userWritable) throws org.eclipse.milo.opcua.stack.core.UaException
userWritable - the Boolean value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends Boolean> readUserWritableAsync()
readUserWritable().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeUserWritableAsync(Boolean userWritable)
writeUserWritable(Boolean).PropertyType getUserWritableNode() 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> getUserWritableNodeAsync()
getUserWritableNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort getOpenCount()
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 OpenCount Node.void setOpenCount(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort openCount)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
openCount - the local value to set for the OpenCount Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the OpenCount Node.org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort readOpenCount()
throws org.eclipse.milo.opcua.stack.core.UaException
UShort value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeOpenCount(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort openCount)
throws org.eclipse.milo.opcua.stack.core.UaException
openCount - the UShort 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.UShort> readOpenCountAsync()
readOpenCount().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeOpenCountAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort openCount)
writeOpenCount(UShort).PropertyType getOpenCountNode() 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> getOpenCountNodeAsync()
getOpenCountNode().String getMimeType() 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 MimeType Node.void setMimeType(String mimeType) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
mimeType - the local value to set for the MimeType Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MimeType Node.String readMimeType() throws org.eclipse.milo.opcua.stack.core.UaException
String value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeMimeType(String mimeType) throws org.eclipse.milo.opcua.stack.core.UaException
mimeType - the String value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends String> readMimeTypeAsync()
readMimeType().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMimeTypeAsync(String mimeType)
writeMimeType(String).PropertyType getMimeTypeNode() 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> getMimeTypeNodeAsync()
getMimeTypeNode().Copyright © 2021. All rights reserved.