Uses of Class
de.gsi.dataset.serializer.DataType
-
Packages that use DataType Package Description de.gsi.dataset.serializer de.gsi.dataset.serializer.spi de.gsi.dataset.serializer.spi.iobuffer -
-
Uses of DataType in de.gsi.dataset.serializer
Methods in de.gsi.dataset.serializer that return DataType Modifier and Type Method Description static DataTypeDataType. fromByte(byte value)Returns the data type matching the given byte representation, if any.static DataTypeDataType. fromClassType(java.lang.Class<?> classType)Returns the data type matching the given java class type, if any.static DataTypeDataType. fromJavaTypeString(java.lang.String str)Returns the data type matching the given java string representation, if any.static DataTypeDataType. fromString(java.lang.String str)Returns the data type matching the given string representation, if any.static DataTypeDataType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DataType[]DataType. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of DataType in de.gsi.dataset.serializer.spi
Methods in de.gsi.dataset.serializer.spi that return DataType Modifier and Type Method Description protected static DataTypeClassFieldDescription. dataTypeFomClassType(java.lang.Class<?> classType)Returns the data type matching the given java class type, if any.DataTypeClassFieldDescription. getDataType()DataTypeFieldHeader. getDataType()Methods in de.gsi.dataset.serializer.spi with parameters of type DataType Modifier and Type Method Description static double[]BinarySerialiser. getDoubleArray(IoBuffer readBuffer, DataType dataType)protected static java.lang.Object[]BinarySerialiser. getGenericArrayAsPrimitive(IoBuffer readBuffer, DataType dataType)static longBinarySerialiser. putArrayHeader(IoBuffer buffer, java.lang.String fieldName, DataType dataType, int[] dims, int nElements)static voidBinarySerialiser. putFieldHeader(IoBuffer buffer, java.lang.String fieldName, DataType dataType)static voidBinarySerialiser. putFieldHeader(IoBuffer buffer, java.lang.String fieldName, DataType dataType, int additionalSize)static voidBinarySerialiser. putGenericArrayAsPrimitive(IoBuffer buffer, DataType dataType, java.lang.Object[] data, int nToCopy)Constructors in de.gsi.dataset.serializer.spi with parameters of type DataType Constructor Description FieldHeader(FieldHeader parent, java.lang.String fieldName, DataType dataType, int[] dims, long positionBuffer, long expectedNumberOfBytes)Constructs new serializer field headerFieldHeader(java.lang.String fieldName, DataType dataType, int[] dims, long positionBuffer, long expectedNumberOfBytes)Constructs new serializer field header -
Uses of DataType in de.gsi.dataset.serializer.spi.iobuffer
Methods in de.gsi.dataset.serializer.spi.iobuffer with parameters of type DataType Modifier and Type Method Description protected static java.util.Optional<FieldHeader>DataSetSerialiser. checkFieldCompatibility(IoBuffer buffer, java.util.List<FieldHeader> fieldHeaderList, java.lang.String fieldName, DataType... requireDataTypes)
-