Uses of Class
adams.data.report.DataType
-
Packages that use DataType Package Description adams.data.conversion adams.data.featureconverter adams.data.objectfilter adams.data.report adams.db adams.flow.transformer adams.gui.goe adams.gui.selection -
-
Uses of DataType in adams.data.conversion
Fields in adams.data.conversion declared as DataType Modifier and Type Field Description protected DataType
ArrayToReport. m_DataType
the data type to use.protected DataType
StringToField. m_DefaultDataType
the default data type, for overriding UNKNOWN.Methods in adams.data.conversion that return DataType Modifier and Type Method Description DataType
ArrayToReport. getDataType()
Returns the data type in use.DataType
StringToField. getDefaultDataType()
Returns the default data type.Methods in adams.data.conversion with parameters of type DataType Modifier and Type Method Description void
ArrayToReport. setDataType(DataType value)
Sets the data type to use.void
StringToField. setDefaultDataType(DataType value)
Sets the default data type. -
Uses of DataType in adams.data.featureconverter
Fields in adams.data.featureconverter with type parameters of type DataType Modifier and Type Field Description protected List<DataType>
HeaderDefinition. m_Types
the type.Methods in adams.data.featureconverter that return DataType Modifier and Type Method Description DataType
HeaderDefinition. getType(int index)
Returns the data type at the specified index.Methods in adams.data.featureconverter that return types with arguments of type DataType Modifier and Type Method Description List<DataType>
HeaderDefinition. getTypes()
Returns the data types.Methods in adams.data.featureconverter with parameters of type DataType Modifier and Type Method Description void
HeaderDefinition. add(int index, String name, DataType type)
Inserts the definition at the specified position.void
HeaderDefinition. add(String name, DataType type)
Adds the definition at the end. -
Uses of DataType in adams.data.objectfilter
Fields in adams.data.objectfilter declared as DataType Modifier and Type Field Description protected DataType
AttachMetaData. m_DataType
the data type.Methods in adams.data.objectfilter that return DataType Modifier and Type Method Description DataType
AttachMetaData. getDataType()
Returns the data type of the value.Methods in adams.data.objectfilter with parameters of type DataType Modifier and Type Method Description void
AttachMetaData. setDataType(DataType value)
Sets the data type of the value. -
Uses of DataType in adams.data.report
Fields in adams.data.report declared as DataType Modifier and Type Field Description protected DataType
AbstractField. m_DataType
the data type.protected DataType[]
RemoveByDataType. m_DataTypes
the data types to remove.Methods in adams.data.report that return DataType Modifier and Type Method Description DataType
AbstractField. getDataType()
Get datatype.DataType[]
RemoveByDataType. getDataTypes()
Returns the data types to remove.DataType
Report. getFieldType(AbstractField field)
Returns the type for given field.static DataType
DataType. guessType(Object obj)
Guesses the data type from the object.DataType
DataType. parse(String s)
Parses the given string and returns the associated enum.static DataType
DataType. valueOf(AbstractOption option, String str)
Returns an enum generated from the string.static DataType
DataType. valueOf(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.Methods in adams.data.report with parameters of type DataType Modifier and Type Method Description abstract AbstractField
AbstractField. newField(String name, DataType dtype)
Returns a new field.AbstractField
Field. newField(String name, DataType dtype)
Returns a new field.AbstractField
PrefixField. newField(String name, DataType dtype)
Returns a new field.AbstractField
SuffixField. newField(String name, DataType dtype)
Returns a new field.abstract AbstractField
AbstractField. replacePrefix(String prefix, DataType dt)
Replaces the prefix of a Field and returns a new Field object.AbstractField
Field. replacePrefix(String prefix, DataType dt)
Replaces the prefix of a Field and returns a new Field object.abstract AbstractField
AbstractField. replaceSuffix(String suffix, DataType dt)
Replaces the suffix of a Field and returns a new Field object.AbstractField
Field. replaceSuffix(String suffix, DataType dt)
Replaces the suffix of a Field and returns a new Field object.void
RemoveByDataType. setDataTypes(DataType[] value)
Sets the data types to remove.Constructors in adams.data.report with parameters of type DataType Constructor Description AbstractField(String name, DataType dt)
Constructor.AbstractField(String prefix, String suffix, DataType dt)
Constructor.Field(String name, DataType dt)
Constructor.Field(String prefix, String suffix, DataType dt)
Constructor.PrefixField(String name, DataType dt)
Constructor.SuffixField(String name, DataType dt)
Constructor. -
Uses of DataType in adams.db
Methods in adams.db with parameters of type DataType Modifier and Type Method Description boolean
BulkReportUpdater. bulkStore(T[] records, DataType[] types, String skipFields, int batchSize, boolean autoCommit, boolean newConnection)
Stores the records.List<T>
FieldProvider. getFields(DataType dtype)
Returns all available fields. -
Uses of DataType in adams.flow.transformer
Fields in adams.flow.transformer declared as DataType Modifier and Type Field Description protected DataType
SetImageObjectMetaData. m_Type
the type of the value.Methods in adams.flow.transformer that return DataType Modifier and Type Method Description DataType
SetImageObjectMetaData. getType()
Returns how to parse the value string.Methods in adams.flow.transformer with parameters of type DataType Modifier and Type Method Description void
SetImageObjectMetaData. setType(DataType value)
Sets how to parse the value string. -
Uses of DataType in adams.gui.goe
Methods in adams.gui.goe with parameters of type DataType Modifier and Type Method Description protected AbstractField[]
FieldEditor. newArray(List<String> fields, DataType type)
Creates a new array of field objects from the strings.protected AbstractField[]
PrefixFieldEditor. newArray(Vector<String> fields, DataType type)
Creates a new array of prefix field objects from the strings.protected AbstractField[]
SuffixFieldEditor. newArray(Vector<String> fields, DataType type)
Creates a new array of suffix field objects from the strings. -
Uses of DataType in adams.gui.selection
Fields in adams.gui.selection declared as DataType Modifier and Type Field Description protected DataType
FieldCacheTableModel. m_DataType
the data type in use (if any).Methods in adams.gui.selection that return DataType Modifier and Type Method Description DataType
AbstractSelectDatabaseFieldPanel. getDataType()
Returns the currently selected data type, if any.DataType
FieldCacheTableModel. getDataType()
Returns the data type.DataType
SelectFieldPanel. getDataType()
Returns the currently selected data type, if any.Methods in adams.gui.selection with parameters of type DataType Modifier and Type Method Description List<AbstractField>
AbstractFieldCacheItem. getValues(FieldType fieldType, DataType dataType)
Returns the cached values for the specified field/data type.protected abstract T
AbstractSelectDatabaseFieldPanel. newInstance(String name, DataType type)
Creates a new field instance.void
AbstractSelectDatabaseFieldPanel. setDataType(DataType value)
Sets the data type to display.void
FieldCacheTableModel. setDataType(DataType value)
Sets the data type.void
SelectFieldPanel. setDataType(DataType value)
Sets the data type to display.Constructors in adams.gui.selection with parameters of type DataType Constructor Description FieldCacheTableModel(AbstractFieldCacheItem cache, FieldType fieldType, DataType dataType)
the constructor.
-