Uses of Class
org.opcfoundation.ua.encoding.DecodingException

Packages that use DecodingException
org.opcfoundation.ua.builtintypes OPC UA Part 6 defines 25 builtin types. 
org.opcfoundation.ua.encoding This folder contains serialization interfaces and serialization implementations 
org.opcfoundation.ua.encoding.binary The implementation of binary serialization 
org.opcfoundation.ua.encoding.utils Utility classes for encoding 
org.opcfoundation.ua.encoding.xml The implementation of xml serialization. 
 

Uses of DecodingException in org.opcfoundation.ua.builtintypes
 

Methods in org.opcfoundation.ua.builtintypes that throw DecodingException
<T extends IEncodeable>
T
ExtensionObject.decode(EncoderContext ctx)
          Attempts to decode the extension object using the default serializer of the stack.
<T extends IEncodeable>
T
ExtensionObject.decode(EncoderContext ctx, NamespaceTable namespaceTable)
          decode.
<T extends IEncodeable>
T
ExtensionObject.decode(IEncodeableSerializer serializer, EncoderContext ctx, NamespaceTable namespaceTable)
          Decode the extension object
 

Uses of DecodingException in org.opcfoundation.ua.encoding
 

Methods in org.opcfoundation.ua.encoding that throw DecodingException
 Object EncoderContext.decode(ExtensionObject[] values)
          decode.
 Object EncoderContext.decode(ExtensionObject[] values, NamespaceTable namespaceTable)
          decode.
<T> T
IDecoder.get(String fieldName, Class<T> clazz)
          get.
 Object IDecoder.getArrayObject(String fieldName, int builtinTypeId)
          getArrayObject.
 Boolean IDecoder.getBoolean(String fieldName)
          getBoolean.
 Boolean[] IDecoder.getBooleanArray(String fieldName)
          getBooleanArray.
 UnsignedByte IDecoder.getByte(String fieldName)
          getByte.
 UnsignedByte[] IDecoder.getByteArray(String fieldName)
          getByteArray.
 ByteString IDecoder.getByteString(String fieldName)
          getByteString.
 ByteString[] IDecoder.getByteStringArray(String fieldName)
          getByteStringArray.
 DataValue IDecoder.getDataValue(String fieldName)
          getDataValue.
 DataValue[] IDecoder.getDataValueArray(String fieldName)
          getDataValueArray.
 DateTime IDecoder.getDateTime(String fieldName)
          getDateTime.
 DateTime[] IDecoder.getDateTimeArray(String fieldName)
          getDateTimeArray.
 DiagnosticInfo IDecoder.getDiagnosticInfo(String fieldName)
          getDiagnosticInfo.
 DiagnosticInfo[] IDecoder.getDiagnosticInfoArray(String fieldName)
          getDiagnosticInfoArray.
 Double IDecoder.getDouble(String fieldName)
          getDouble.
 Double[] IDecoder.getDoubleArray(String fieldName)
          getDoubleArray.
<T extends IEncodeable>
T
IDecoder.getEncodeable(String fieldName, Class<? extends T> encodeableClass)
          getEncodeable.
<T extends IEncodeable>
T[]
IDecoder.getEncodeableArray(String fieldName, Class<? extends T> encodeableClass)
          getEncodeableArray.
<T extends Enumeration>
T
IDecoder.getEnumeration(String fieldName, Class<T> enumerationClass)
          getEnumeration.
<T extends Enumeration>
T[]
IDecoder.getEnumerationArray(String fieldName, Class<T> enumerationClass)
          getEnumerationArray.
 ExpandedNodeId IDecoder.getExpandedNodeId(String fieldName)
          getExpandedNodeId.
 ExpandedNodeId[] IDecoder.getExpandedNodeIdArray(String fieldName)
          getExpandedNodeIdArray.
 ExtensionObject IDecoder.getExtensionObject(String fieldName)
          getExtensionObject.
 ExtensionObject[] IDecoder.getExtensionObjectArray(String fieldName)
          getExtensionObjectArray.
 Float IDecoder.getFloat(String fieldName)
          getFloat.
 Float[] IDecoder.getFloatArray(String fieldName)
          getFloatArray.
 UUID IDecoder.getGuid(String fieldName)
          getGuid.
 UUID[] IDecoder.getGuidArray(String fieldName)
          getGuidArray.
 Short IDecoder.getInt16(String fieldName)
          getInt16.
 Short[] IDecoder.getInt16Array(String fieldName)
          getInt16Array.
 Integer IDecoder.getInt32(String fieldName)
          getInt32.
 int[] IDecoder.getInt32Array_(String fieldName)
          getInt32Array_.
 Integer[] IDecoder.getInt32Array(String fieldName)
          getInt32Array.
 Long IDecoder.getInt64(String fieldName)
          getInt64.
 Long[] IDecoder.getInt64Array(String fieldName)
          getInt64Array.
 LocalizedText IDecoder.getLocalizedText(String fieldName)
          getLocalizedText.
 LocalizedText[] IDecoder.getLocalizedTextArray(String fieldName)
          getLocalizedTextArray.
<T extends IEncodeable>
T
IDecoder.getMessage()
          getMessage.
 NodeId IDecoder.getNodeId(String fieldName)
          getNodeId.
 NodeId[] IDecoder.getNodeIdArray(String fieldName)
          getNodeIdArray.
 QualifiedName IDecoder.getQualifiedName(String fieldName)
          getQualifiedName.
 QualifiedName[] IDecoder.getQualifiedNameArray(String fieldName)
          getQualifiedNameArray.
 Byte IDecoder.getSByte(String fieldName)
          getSByte.
 Byte[] IDecoder.getSByteArray(String fieldName)
          getSByteArray.
 Object IDecoder.getScalarObject(String fieldName, int builtinTypeId)
          getScalarObject.
 StatusCode IDecoder.getStatusCode(String fieldName)
          getStatusCode.
 StatusCode[] IDecoder.getStatusCodeArray(String fieldName)
          getStatusCodeArray.
 String IDecoder.getString(String fieldName)
          getString.
 String[] IDecoder.getStringArray(String fieldName)
          getStringArray.
 Structure IDecoder.getStructure(String fieldName)
          getStructure.
 Structure[] IDecoder.getStructureArray(String fieldName)
          getStructureArray.
 UnsignedShort IDecoder.getUInt16(String fieldName)
          getUInt16.
 UnsignedShort[] IDecoder.getUInt16Array(String fieldName)
          getUInt16Array.
 UnsignedInteger IDecoder.getUInt32(String fieldName)
          getUInt32.
 UnsignedInteger[] IDecoder.getUInt32Array(String fieldName)
          getUInt32Array.
 UnsignedLong IDecoder.getUInt64(String fieldName)
          getUInt64.
 UnsignedLong[] IDecoder.getUInt64Array(String fieldName)
          getUInt64Array.
 Variant IDecoder.getVariant(String fieldName)
          getVariant.
 Variant[] IDecoder.getVariantArray(String fieldName)
          getVariantArray.
 XmlElement IDecoder.getXmlElement(String fieldName)
          getXmlElement.
 XmlElement[] IDecoder.getXmlElementArray(String fieldName)
          getXmlElementArray.
 

Uses of DecodingException in org.opcfoundation.ua.encoding.binary
 

Methods in org.opcfoundation.ua.encoding.binary that throw DecodingException
<T> T
BinaryDecoder.get(String fieldName, Class<T> clazz)
          get.
 Object BinaryDecoder.getArrayObject(String fieldName, int builtinTypeId)
          getArrayObject.
 Boolean BinaryDecoder.getBoolean(String fieldName)
          getBoolean.
 Boolean[] BinaryDecoder.getBooleanArray(String fieldName)
          getBooleanArray.
 UnsignedByte BinaryDecoder.getByte(String fieldName)
          getByte.
 UnsignedByte[] BinaryDecoder.getByteArray(String fieldName)
          getByteArray.
 ByteString BinaryDecoder.getByteString(String fieldName)
          getByteString.
 ByteString[] BinaryDecoder.getByteStringArray(String fieldName)
          getByteStringArray.
 DataValue BinaryDecoder.getDataValue(String fieldName)
          getDataValue.
 DataValue[] BinaryDecoder.getDataValueArray(String fieldName)
          getDataValueArray.
 DateTime BinaryDecoder.getDateTime(String fieldName)
          getDateTime.
 DateTime[] BinaryDecoder.getDateTimeArray(String fieldName)
          getDateTimeArray.
 DiagnosticInfo BinaryDecoder.getDiagnosticInfo(String fieldName)
          getDiagnosticInfo.
 DiagnosticInfo[] BinaryDecoder.getDiagnosticInfoArray(String fieldName)
          getDiagnosticInfoArray.
 Double BinaryDecoder.getDouble(String fieldName)
          getDouble.
 Double[] BinaryDecoder.getDoubleArray(String fieldName)
          getDoubleArray.
 IEncodeable IEncodeableSerializer.getEncodeable(Class<? extends IEncodeable> clazz, IDecoder decoder)
          Deserialize an object from a binary stream.
 IEncodeable EncodeableReflectionSerializer.getEncodeable(Class<? extends IEncodeable> clazz, IDecoder decoder)
          Deserialize an object from a binary stream.
<T extends IEncodeable>
T
BinaryDecoder.getEncodeable(String fieldName, Class<? extends T> encodeableClass)
          getEncodeable.
<T extends IEncodeable>
T[]
BinaryDecoder.getEncodeableArray(String fieldName, Class<? extends T> encodeableClass)
          getEncodeableArray.
<T extends Enumeration>
T
BinaryDecoder.getEnumeration(String fieldName, Class<T> enumerationClass)
          getEnumeration.
<T extends Enumeration>
T[]
BinaryDecoder.getEnumerationArray(String fieldName, Class<T> enumerationClass)
          getEnumerationArray.
 ExpandedNodeId BinaryDecoder.getExpandedNodeId(String fieldName)
          getExpandedNodeId.
 ExpandedNodeId[] BinaryDecoder.getExpandedNodeIdArray(String fieldName)
          getExpandedNodeIdArray.
 ExtensionObject BinaryDecoder.getExtensionObject(String fieldName)
          getExtensionObject.
 ExtensionObject[] BinaryDecoder.getExtensionObjectArray(String fieldName)
          getExtensionObjectArray.
 Float BinaryDecoder.getFloat(String fieldName)
          getFloat.
 Float[] BinaryDecoder.getFloatArray(String fieldName)
          getFloatArray.
 UUID BinaryDecoder.getGuid(String fieldName)
          getGuid.
 UUID[] BinaryDecoder.getGuidArray(String fieldName)
          getGuidArray.
 Short BinaryDecoder.getInt16(String fieldName)
          getInt16.
 Short[] BinaryDecoder.getInt16Array(String fieldName)
          getInt16Array.
 Integer BinaryDecoder.getInt32(String fieldName)
          getInt32.
 int[] BinaryDecoder.getInt32Array_(String fieldName)
          getInt32Array_.
 Integer[] BinaryDecoder.getInt32Array(String fieldName)
          getInt32Array.
 Long BinaryDecoder.getInt64(String fieldName)
          getInt64.
 Long[] BinaryDecoder.getInt64Array(String fieldName)
          getInt64Array.
 LocalizedText BinaryDecoder.getLocalizedText(String fieldName)
          getLocalizedText.
 LocalizedText[] BinaryDecoder.getLocalizedTextArray(String fieldName)
          getLocalizedTextArray.
<T extends IEncodeable>
T
BinaryDecoder.getMessage()
          getMessage.
 NodeId BinaryDecoder.getNodeId(String fieldName)
          getNodeId.
 NodeId[] BinaryDecoder.getNodeIdArray(String fieldName)
          getNodeIdArray.
 QualifiedName BinaryDecoder.getQualifiedName(String fieldName)
          getQualifiedName.
 QualifiedName[] BinaryDecoder.getQualifiedNameArray(String fieldName)
          getQualifiedNameArray.
 Byte BinaryDecoder.getSByte(String fieldName)
          getSByte.
 Byte[] BinaryDecoder.getSByteArray(String fieldName)
          getSByteArray.
 Object BinaryDecoder.getScalarObject(String fieldName, int builtinTypeId)
          getScalarObject.
 StatusCode BinaryDecoder.getStatusCode(String fieldName)
          getStatusCode.
 StatusCode[] BinaryDecoder.getStatusCodeArray(String fieldName)
          getStatusCodeArray.
 String BinaryDecoder.getString(String fieldName)
          getString.
 String[] BinaryDecoder.getStringArray(String fieldName)
          getStringArray.
 Structure BinaryDecoder.getStructure(String fieldName)
          getStructure.
 Structure[] BinaryDecoder.getStructureArray(String fieldName)
          getStructureArray.
 UnsignedShort BinaryDecoder.getUInt16(String fieldName)
          getUInt16.
 UnsignedShort[] BinaryDecoder.getUInt16Array(String fieldName)
          getUInt16Array.
 UnsignedInteger BinaryDecoder.getUInt32(String fieldName)
          getUInt32.
 UnsignedInteger[] BinaryDecoder.getUInt32Array(String fieldName)
          getUInt32Array.
 UnsignedLong BinaryDecoder.getUInt64(String fieldName)
          getUInt64.
 UnsignedLong[] BinaryDecoder.getUInt64Array(String fieldName)
          getUInt64Array.
 Variant BinaryDecoder.getVariant(String fieldName)
          getVariant.
 Variant[] BinaryDecoder.getVariantArray(String fieldName)
          getVariantArray.
 XmlElement BinaryDecoder.getXmlElement(String fieldName)
          getXmlElement.
 XmlElement[] BinaryDecoder.getXmlElementArray(String fieldName)
          getXmlElementArray.
protected  long BinaryDecoder.remaining()
          remaining.
 

Uses of DecodingException in org.opcfoundation.ua.encoding.utils
 

Methods in org.opcfoundation.ua.encoding.utils that throw DecodingException
 IEncodeable SerializerComposition.getEncodeable(Class<? extends IEncodeable> clazz, IDecoder decoder)
          Deserialize an object from a binary stream.
 IEncodeable AbstractSerializer.getEncodeable(Class<? extends IEncodeable> clazz, IDecoder decoder)
          Deserialize an object from a binary stream.
abstract  IEncodeable AbstractSerializer.getEncodeable(IDecoder decoder)
          getEncodeable.
 

Uses of DecodingException in org.opcfoundation.ua.encoding.xml
 

Methods in org.opcfoundation.ua.encoding.xml that throw DecodingException
 void XmlDecoder.close()
          close.
 void XmlDecoder.close(boolean checkEof)
          close.
<T> T
XmlDecoder.get(String fieldName, Class<T> clazz)
          get.
 Object XmlDecoder.getArrayObject(String fieldName, int builtinTypeId)
          getArrayObject.
 Boolean XmlDecoder.getBoolean(String fieldName)
          getBoolean.
 Boolean[] XmlDecoder.getBooleanArray(String fieldName)
          getBooleanArray.
 UnsignedByte XmlDecoder.getByte(String fieldName)
          getByte.
 UnsignedByte[] XmlDecoder.getByteArray(String fieldName)
          getByteArray.
 ByteString XmlDecoder.getByteString(String fieldName)
          getByteString.
 ByteString[] XmlDecoder.getByteStringArray(String fieldName)
          getByteStringArray.
 DataValue XmlDecoder.getDataValue(String fieldName)
          getDataValue.
 DataValue[] XmlDecoder.getDataValueArray(String fieldName)
          getDataValueArray.
 DateTime XmlDecoder.getDateTime(String fieldName)
          getDateTime.
 DateTime[] XmlDecoder.getDateTimeArray(String fieldName)
          getDateTimeArray.
 DiagnosticInfo XmlDecoder.getDiagnosticInfo()
          getDiagnosticInfo.
 DiagnosticInfo XmlDecoder.getDiagnosticInfo(String fieldName)
          getDiagnosticInfo.
 DiagnosticInfo[] XmlDecoder.getDiagnosticInfoArray(String fieldName)
          getDiagnosticInfoArray.
 Double XmlDecoder.getDouble(String fieldName)
          getDouble.
 Double[] XmlDecoder.getDoubleArray(String fieldName)
          getDoubleArray.
<T extends IEncodeable>
T
XmlDecoder.getEncodeable(String fieldName, Class<? extends T> encodeableClass)
          getEncodeable.
<T extends IEncodeable>
T[]
XmlDecoder.getEncodeableArray(String fieldName, Class<? extends T> encodeableClass)
          getEncodeableArray.
 void XmlDecoder.getEndElement()
          getEndElement.
<T extends Enumeration>
T
XmlDecoder.getEnumeration(String fieldName, Class<T> enumType)
          getEnumeration.
<T extends Enumeration>
T[]
XmlDecoder.getEnumerationArray(String fieldName, Class<T> enumerationClass)
          getEnumerationArray.
 ExpandedNodeId XmlDecoder.getExpandedNodeId(String fieldName)
          getExpandedNodeId.
 ExpandedNodeId[] XmlDecoder.getExpandedNodeIdArray(String fieldName)
          getExpandedNodeIdArray.
 ExtensionObject XmlDecoder.getExtensionObject(String fieldName)
          getExtensionObject.
 ExtensionObject[] XmlDecoder.getExtensionObjectArray(String fieldName)
          getExtensionObjectArray.
 Object XmlDecoder.getExtensionObjectBody(ExpandedNodeId typeId)
          getExtensionObjectBody.
 Float XmlDecoder.getFloat(String fieldName)
          getFloat.
 Float[] XmlDecoder.getFloatArray(String fieldName)
          getFloatArray.
 UUID XmlDecoder.getGuid(String fieldName)
          getGuid.
 UUID[] XmlDecoder.getGuidArray(String fieldName)
          getGuidArray.
 Short XmlDecoder.getInt16(String fieldName)
          getInt16.
 Short[] XmlDecoder.getInt16Array(String fieldName)
          getInt16Array.
 Integer XmlDecoder.getInt32(String fieldName)
          getInt32.
 int[] XmlDecoder.getInt32Array_(String fieldName)
          getInt32Array_.
 Integer[] XmlDecoder.getInt32Array(String fieldName)
          getInt32Array.
 Long XmlDecoder.getInt64(String fieldName)
          getInt64.
 Long[] XmlDecoder.getInt64Array(String fieldName)
          getInt64Array.
 LocalizedText XmlDecoder.getLocalizedText(String fieldName)
          getLocalizedText.
 LocalizedText[] XmlDecoder.getLocalizedTextArray(String fieldName)
          getLocalizedTextArray.
 Object XmlDecoder.getMatrix(String fieldName)
           
<T extends IEncodeable>
T
XmlDecoder.getMessage()
          getMessage.
 NodeId XmlDecoder.getNodeId(String fieldName)
          getNodeId.
 NodeId[] XmlDecoder.getNodeIdArray(String fieldName)
          getNodeIdArray.
 QualifiedName XmlDecoder.getQualifiedName(String fieldName)
          getQualifiedName.
 QualifiedName[] XmlDecoder.getQualifiedNameArray(String fieldName)
          getQualifiedNameArray.
 Byte XmlDecoder.getSByte(String fieldName)
          getSByte.
 Byte[] XmlDecoder.getSByteArray(String fieldName)
          getSByteArray.
 Object XmlDecoder.getScalarObject(String fieldName, int builtinTypeId)
          getScalarObject.
 void XmlDecoder.getStartElement()
          getStartElement.
 StatusCode XmlDecoder.getStatusCode(String fieldName)
          getStatusCode.
 StatusCode[] XmlDecoder.getStatusCodeArray(String fieldName)
          getStatusCodeArray.
 String XmlDecoder.getString(String fieldName)
          getString.
 String[] XmlDecoder.getStringArray(String fieldName)
          getStringArray.
 Structure XmlDecoder.getStructure(String fieldName)
          getStructure.
 Structure[] XmlDecoder.getStructureArray(String fieldName)
          getStructureArray.
 UnsignedShort XmlDecoder.getUInt16(String fieldName)
          getUInt16.
 UnsignedShort[] XmlDecoder.getUInt16Array(String fieldName)
          getUInt16Array.
 UnsignedInteger XmlDecoder.getUInt32(String fieldName)
          getUInt32.
 UnsignedInteger[] XmlDecoder.getUInt32Array(String fieldName)
          getUInt32Array.
 UnsignedLong XmlDecoder.getUInt64(String fieldName)
          getUInt64.
 UnsignedLong[] XmlDecoder.getUInt64Array(String fieldName)
          getUInt64Array.
 Variant XmlDecoder.getVariant(String fieldName)
          getVariant.
 Variant[] XmlDecoder.getVariantArray(String fieldName)
          getVariantArray.
 Object XmlDecoder.getVariantContents()
          getVariantContents.
 XmlElement XmlDecoder.getXmlElement(String fieldName)
          getXmlElement.
 XmlElement[] XmlDecoder.getXmlElementArray(String fieldName)
          getXmlElementArray.
 boolean XmlDecoder.loadStringTable(String tableName, String elementName, List<String> stringTable)
          loadStringTable.
 

Constructors in org.opcfoundation.ua.encoding.xml that throw DecodingException
XmlDecoder(XmlElement element, EncoderContext context)
          Constructor for XmlDecoder.
XmlDecoder(XMLStreamReader reader, EncoderContext context)
          Constructor for XmlDecoder.
 



Copyright © 2018. All rights reserved.