Uses of Interface
elki.data.FeatureVector.Factory
-
Packages that use FeatureVector.Factory Package Description elki.data Basic classes for different data types, database object types and label types.elki.data.projection Data projections.elki.data.type Data type information, also used for type restrictions.elki.data.uncertain Uncertain data objects.elki.data.uncertain.uncertainifier Classes to generate uncertain objects from existing certain data. -
-
Uses of FeatureVector.Factory in elki.data
Subinterfaces of FeatureVector.Factory in elki.data Modifier and Type Interface Description static interfaceNumberVector.Factory<V extends NumberVector>Factory API for this feature vector.static interfaceSparseNumberVector.Factory<V extends SparseNumberVector>Factory for sparse number vectors: make from a dim-value map.Classes in elki.data that implement FeatureVector.Factory Modifier and Type Class Description static classBitVector.FactoryFactory for bit vectors.static classByteVector.FactoryFactory for Byte vectors.static classDoubleVector.FactoryFactory for Double vectors.static classFloatVector.FactoryFactory for float vectors.static classIntegerVector.FactoryFactory for integer vectors.static classOneDimensionalDoubleVector.FactoryFactory class.static classShortVector.FactoryFactory for Short vectors.static classSparseByteVector.FactoryFactory class.static classSparseDoubleVector.FactoryFactory class.static classSparseFloatVector.FactoryFactory class.static classSparseIntegerVector.FactoryFactory class.static classSparseShortVector.FactoryFactory class. -
Uses of FeatureVector.Factory in elki.data.projection
Fields in elki.data.projection declared as FeatureVector.Factory Modifier and Type Field Description private FeatureVector.Factory<V,F>FeatureSelection. factoryObject factory. -
Uses of FeatureVector.Factory in elki.data.type
Fields in elki.data.type declared as FeatureVector.Factory Modifier and Type Field Description private FeatureVector.Factory<V,?>VectorTypeInformation. factoryObject factory for producing new instances.Methods in elki.data.type that return FeatureVector.Factory Modifier and Type Method Description FeatureVector.Factory<V,?>VectorTypeInformation. getFactory()Get the object type factory.Constructors in elki.data.type with parameters of type FeatureVector.Factory Constructor Description MultivariateSeriesTypeInformation(FeatureVector.Factory<V,?> factory, ByteBufferSerializer<? super V> serializer, int mindim, int maxdim, int multiplicity)Constructor for an actual type.VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory, int dim)Constructor with given dimensionality and factory, so usually an instance.VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory, int mindim, int maxdim, ByteBufferSerializer<? super V> serializer)Constructor with given dimensionality and factory, so usually an instance.VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory, int dim, ByteBufferSerializer<? super V> serializer)Constructor with given dimensionality and factory, so usually an instance.VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory, int dim, java.lang.String[] labels)Constructor with given dimensionality and factory, so usually an instance.VectorFieldTypeInformation(FeatureVector.Factory<V,?> factory, int dim, java.lang.String[] labels, ByteBufferSerializer<? super V> serializer)Constructor with given dimensionality and factory, so usually an instance.VectorTypeInformation(FeatureVector.Factory<V,?> factory, ByteBufferSerializer<? super V> serializer, int mindim, int maxdim)Constructor for an actual type. -
Uses of FeatureVector.Factory in elki.data.uncertain
Classes in elki.data.uncertain that implement FeatureVector.Factory Modifier and Type Class Description private static classSimpleGaussianContinuousUncertainObject.FactoryFactory class for this data type.private static classUniformContinuousUncertainObject.FactoryFactory class for this data type.private static classUnweightedDiscreteUncertainObject.FactoryFactory class for this data type.private static classWeightedDiscreteUncertainObject.FactoryFactory class for this data type.Fields in elki.data.uncertain declared as FeatureVector.Factory Modifier and Type Field Description static FeatureVector.Factory<SimpleGaussianContinuousUncertainObject,?>SimpleGaussianContinuousUncertainObject. FACTORYVector factory.static FeatureVector.Factory<UniformContinuousUncertainObject,?>UniformContinuousUncertainObject. FACTORYVector factory.static FeatureVector.Factory<UnweightedDiscreteUncertainObject,?>UnweightedDiscreteUncertainObject. FACTORYVector factory.static FeatureVector.Factory<WeightedDiscreteUncertainObject,?>WeightedDiscreteUncertainObject. FACTORYVector factory. -
Uses of FeatureVector.Factory in elki.data.uncertain.uncertainifier
Methods in elki.data.uncertain.uncertainifier that return FeatureVector.Factory Modifier and Type Method Description FeatureVector.Factory<SimpleGaussianContinuousUncertainObject,?>SimpleGaussianUncertainifier. getFactory()FeatureVector.Factory<UO,?>Uncertainifier. getFactory()Get the vector factory used for type information and serialization (if supported).FeatureVector.Factory<UniformContinuousUncertainObject,?>UniformUncertainifier. getFactory()FeatureVector.Factory<UnweightedDiscreteUncertainObject,?>UnweightedDiscreteUncertainifier. getFactory()FeatureVector.Factory<WeightedDiscreteUncertainObject,?>WeightedDiscreteUncertainifier. getFactory()
-