Serialized Form


Package org.simantics.databoard.accessor.error

Class org.simantics.databoard.accessor.error.AccessorConstructionException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.accessor.error.AccessorException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.accessor.error.ReferenceException extends AccessorConstructionException implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.accessor.error.WriteAccessException extends AccessorException implements Serializable

serialVersionUID: 1L


Package org.simantics.databoard.accessor.wire

Class org.simantics.databoard.accessor.wire.WireException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

message

java.lang.String message

Package org.simantics.databoard.adapter

Class org.simantics.databoard.adapter.AdapterConstructionException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.adapter.AdaptException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.adapter.RuntimeAdapterConstructionException extends java.lang.RuntimeException implements Serializable

Class org.simantics.databoard.adapter.RuntimeAdaptException extends java.lang.RuntimeException implements Serializable


Package org.simantics.databoard.binding.error

Class org.simantics.databoard.binding.error.BindingConstructionException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.binding.error.BindingException extends java.lang.Exception implements Serializable

serialVersionUID: 5921271401781924412L

Class org.simantics.databoard.binding.error.RuntimeBindingConstructionException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.binding.error.RuntimeBindingException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.binding.error.UnsupportedOperationException extends BindingException implements Serializable

serialVersionUID: 2667608735802416662L


Package org.simantics.databoard.binding.mutable

Class org.simantics.databoard.binding.mutable.MutableByte extends java.lang.Number implements Serializable

serialVersionUID: 1L

Serialized Fields

value

byte value

Class org.simantics.databoard.binding.mutable.MutableDouble extends java.lang.Number implements Serializable

serialVersionUID: 1L

Serialized Fields

value

double value

Class org.simantics.databoard.binding.mutable.MutableFloat extends java.lang.Number implements Serializable

serialVersionUID: 1L

Serialized Fields

value

float value

Class org.simantics.databoard.binding.mutable.MutableInteger extends java.lang.Number implements Serializable

serialVersionUID: 1L

Serialized Fields

value

int value

Class org.simantics.databoard.binding.mutable.MutableLong extends java.lang.Number implements Serializable

serialVersionUID: 1L

Serialized Fields

value

long value

Class org.simantics.databoard.binding.mutable.MutableString extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

value

java.lang.String value

Class org.simantics.databoard.binding.mutable.MutableVariant extends Variant implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException

readObjectNoData

private void readObjectNoData()
                       throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException

Package org.simantics.databoard.bindingscheme

Class org.simantics.databoard.bindingscheme.DataTypeConstructionException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.bindingscheme.RuntimeDataTypeConstructionException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L


Package org.simantics.databoard.datasource

Class org.simantics.databoard.datasource.DatasourceException extends java.lang.Exception implements Serializable


Package org.simantics.databoard.file

Class org.simantics.databoard.file.RuntimeIOException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L


Package org.simantics.databoard.history

Class org.simantics.databoard.history.SamplingException extends java.lang.Exception implements Serializable


Package org.simantics.databoard.method

Class org.simantics.databoard.method.ConnectionClosedException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.method.InvokeException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.method.MessageOverflowException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.method.MethodInterface.ExecutionError extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

error

java.lang.Object error

Class org.simantics.databoard.method.MethodNotSupportedException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.method.RuntimeInvokeException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L


Package org.simantics.databoard.parser

Class org.simantics.databoard.parser.ParseException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class org.simantics.databoard.parser.Token extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

kind

int kind
An integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java.


beginLine

int beginLine
The line number of the first character of this Token.


beginColumn

int beginColumn
The column number of the first character of this Token.


endLine

int endLine
The line number of the last character of this Token.


endColumn

int endColumn
The column number of the last character of this Token.


image

java.lang.String image
The string image of the token.


next

Token next
A reference to the next regular (non-special) token from the input stream. If this is the last token from the input stream, or if the token manager has not read tokens beyond this one, this field is set to null. This is true only if this token is also a regular token. Otherwise, see below for a description of the contents of this field.


specialToken

Token specialToken
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token. If there are no such special tokens, this field is set to null. When there are more than one such special token, this field refers to the last of these special tokens, which in turn refers to the next previous special token through its specialToken field, and so on until the first special token (whose specialToken field is null). The next fields of special tokens refer to other special tokens that immediately follow it (without an intervening regular token). If there is no such token, this field is null.

Class org.simantics.databoard.parser.TokenMgrError extends java.lang.Error implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package org.simantics.databoard.parser.repository

Class org.simantics.databoard.parser.repository.DataTypeSyntaxError extends java.lang.Exception implements Serializable

serialVersionUID: -3062869189293303883L

Class org.simantics.databoard.parser.repository.ValueTranslationRuntimeException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L


Package org.simantics.databoard.serialization

Class org.simantics.databoard.serialization.RuntimeSerializationException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.serialization.SerializationException extends java.lang.Exception implements Serializable

serialVersionUID: 1L

Class org.simantics.databoard.serialization.SerializerConstructionException extends java.lang.Exception implements Serializable

serialVersionUID: 1L


Package org.simantics.databoard.units.internal

Class org.simantics.databoard.units.internal.UnitParseException extends java.lang.Exception implements Serializable

serialVersionUID: 3093169523646621513L

Serialized Fields

unit

java.lang.String unit

Package org.simantics.databoard.util

Class org.simantics.databoard.util.IdentityHashSet extends java.util.AbstractSet<E> implements Serializable

serialVersionUID: -5024744406713321676L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstitute the HashSet instance from a stream (that is, deserialize it).

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Save the state of this HashSet instance to a stream (that is, serialize it).

Serial Data:
The capacity of the backing HashMap instance (int), and its load factor (float) are emitted, followed by the size of the set (the number of elements it contains) (int), followed by all of its elements (each an Object) in no particular order.
Throws:
java.io.IOException

Class org.simantics.databoard.util.RangeException extends java.lang.Exception implements Serializable

serialVersionUID: 1L


Package org.simantics.databoard.util.binary

Class org.simantics.databoard.util.binary.RuntimeSerializerConstructionException extends java.lang.RuntimeException implements Serializable

serialVersionUID: 1870119120713195983L