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 interface
NumberVector.Factory<V extends NumberVector>
Factory API for this feature vector.static interface
SparseNumberVector.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 class
BitVector.Factory
Factory for bit vectors.static class
ByteVector.Factory
Factory for Byte vectors.static class
DoubleVector.Factory
Factory for Double vectors.static class
FloatVector.Factory
Factory for float vectors.static class
IntegerVector.Factory
Factory for integer vectors.static class
OneDimensionalDoubleVector.Factory
Factory class.static class
ShortVector.Factory
Factory for Short vectors.static class
SparseByteVector.Factory
Factory class.static class
SparseDoubleVector.Factory
Factory class.static class
SparseFloatVector.Factory
Factory class.static class
SparseIntegerVector.Factory
Factory class.static class
SparseShortVector.Factory
Factory 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. factory
Object 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. factory
Object 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 class
SimpleGaussianContinuousUncertainObject.Factory
Factory class for this data type.private static class
UniformContinuousUncertainObject.Factory
Factory class for this data type.private static class
UnweightedDiscreteUncertainObject.Factory
Factory class for this data type.private static class
WeightedDiscreteUncertainObject.Factory
Factory class for this data type.Fields in elki.data.uncertain declared as FeatureVector.Factory Modifier and Type Field Description static FeatureVector.Factory<SimpleGaussianContinuousUncertainObject,?>
SimpleGaussianContinuousUncertainObject. FACTORY
Vector factory.static FeatureVector.Factory<UniformContinuousUncertainObject,?>
UniformContinuousUncertainObject. FACTORY
Vector factory.static FeatureVector.Factory<UnweightedDiscreteUncertainObject,?>
UnweightedDiscreteUncertainObject. FACTORY
Vector factory.static FeatureVector.Factory<WeightedDiscreteUncertainObject,?>
WeightedDiscreteUncertainObject. FACTORY
Vector 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()
-