Uses of Class
org.debellor.core.DataType

Packages that use DataType
org.debellor.core   
org.debellor.core.data   
org.debellor.core.exception.data   
org.debellor.rseslib   
 

Uses of DataType in org.debellor.core
 

Subclasses of DataType in org.debellor.core
static class Sample.SampleType
          Describes common properties of all Sample objects in a given data Cell.Stream.
 

Fields in org.debellor.core declared as DataType
 DataType Sample.SampleType.data
          Type of Sample.data field.
 DataType Sample.SampleType.decision
          Type of Sample.decision field.
static DataType DataType.NOT_PRESENT
          Marks that a given part of data does not exist and the corresponding field will always have null value, in all samples of the data stream.
static DataType DataType.UNKNOWN
          Marks that type of a given part of data is unknown and consumer should expect everything.
 

Methods in org.debellor.core with parameters of type DataType
 Sample.SampleType Sample.SampleType.setData(DataType data)
           
 Sample.SampleType Sample.SampleType.setDecision(DataType decision)
           
 

Constructors in org.debellor.core with parameters of type DataType
Sample.SampleType(DataType data, DataType decision)
           
 

Uses of DataType in org.debellor.core.data
 

Subclasses of DataType in org.debellor.core.data
static class DataVector.DataVectorType
          dataType of DataVector.
static class NumericFeature.NumericFeatureType
          Does not hold any information, only sets dataClass field of the base DataType class.
static class SymbolicFeature.SymbolicFeatureType
           
 

Methods in org.debellor.core.data that return DataType
 DataType[] DataVector.DataVectorType.get()
          Returns a shallow copy of the array of item types.
 DataType DataVector.DataVectorType.get(int i)
           
 

Constructors in org.debellor.core.data with parameters of type DataType
DataVector.DataVectorType(DataType... itemTypes)
          Constructs a DataVectorType with a copy of the passed array (or variable-length list) as an array of types of this vector's items.
DataVector.DataVectorType(int length, DataType type)
          Constructs a DataVectorType for vectors of constant length containing items of the same type.
SymbolicFeature(int valueCode, DataType type)
           
SymbolicFeature(java.lang.String value, DataType type)
          Creates SymbolicFeature with a 'canonical' String as a symbolic value, taken from the SymbolicFeatureType object.
 

Uses of DataType in org.debellor.core.exception.data
 

Constructors in org.debellor.core.exception.data with parameters of type DataType
DataCastException(DataType dataType, java.lang.Class<? extends DataType> expectedClass)
           
 

Constructor parameters in org.debellor.core.exception.data with type arguments of type DataType
DataCastException(DataType dataType, java.lang.Class<? extends DataType> expectedClass)
           
 

Uses of DataType in org.debellor.rseslib
 

Methods in org.debellor.rseslib with parameters of type DataType
static DataObject DataConverter.attrFromRseslibValue(double v, DataType attrType)