Package elki.data
Class SparseByteVector.Factory
- java.lang.Object
-
- elki.data.SparseByteVector.Factory
-
- All Implemented Interfaces:
FeatureVector.Factory<SparseByteVector,java.lang.Number>,NumberVector.Factory<SparseByteVector>,SparseNumberVector.Factory<SparseByteVector>
- Enclosing class:
- SparseByteVector
public static class SparseByteVector.Factory extends java.lang.Object implements SparseNumberVector.Factory<SparseByteVector>
Factory class.- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSparseByteVector.Factory.ParParameterization class.
-
Constructor Summary
Constructors Constructor Description Factory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteBufferSerializer<SparseByteVector>getDefaultSerializer()Get the default serializer for this type.java.lang.Class<? super SparseByteVector>getRestrictionClass()Get the objects type restriction.<A> SparseByteVectornewFeatureVector(A array, ArrayAdapter<? extends java.lang.Number,A> adapter)Returns a new FeatureVector of V for the given values.<A> SparseByteVectornewNumberVector(A array, NumberArrayAdapter<?,? super A> adapter)Instantiate from any number-array like object.SparseByteVectornewNumberVector(it.unimi.dsi.fastutil.ints.Int2DoubleOpenHashMap values, int maxdim)Returns a new NumberVector of N for the given values.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface elki.data.NumberVector.Factory
newNumberVector, newNumberVector
-
-
-
-
Method Detail
-
newFeatureVector
public <A> SparseByteVector newFeatureVector(A array, ArrayAdapter<? extends java.lang.Number,A> adapter)
Description copied from interface:FeatureVector.FactoryReturns a new FeatureVector of V for the given values.- Specified by:
newFeatureVectorin interfaceFeatureVector.Factory<SparseByteVector,java.lang.Number>- Type Parameters:
A- Array type- Parameters:
array- the values of the featureVectoradapter- adapter class- Returns:
- a new FeatureVector of V for the given values
-
newNumberVector
public <A> SparseByteVector newNumberVector(A array, NumberArrayAdapter<?,? super A> adapter)
Description copied from interface:NumberVector.FactoryInstantiate from any number-array like object.- Specified by:
newNumberVectorin interfaceNumberVector.Factory<SparseByteVector>- Type Parameters:
A- Array type- Parameters:
array- Arrayadapter- Adapter- Returns:
- a new NumberVector of N for the given values.
-
newNumberVector
public SparseByteVector newNumberVector(it.unimi.dsi.fastutil.ints.Int2DoubleOpenHashMap values, int maxdim)
Description copied from interface:SparseNumberVector.FactoryReturns a new NumberVector of N for the given values.- Specified by:
newNumberVectorin interfaceSparseNumberVector.Factory<SparseByteVector>- Parameters:
values- the values of the NumberVectormaxdim- Maximum dimensionality.- Returns:
- a new NumberVector of N for the given values
-
getDefaultSerializer
public ByteBufferSerializer<SparseByteVector> getDefaultSerializer()
Description copied from interface:FeatureVector.FactoryGet the default serializer for this type.Note, this may be
nullwhen no serializer is available.- Specified by:
getDefaultSerializerin interfaceFeatureVector.Factory<SparseByteVector,java.lang.Number>- Returns:
- Serializer
-
getRestrictionClass
public java.lang.Class<? super SparseByteVector> getRestrictionClass()
Description copied from interface:FeatureVector.FactoryGet the objects type restriction.- Specified by:
getRestrictionClassin interfaceFeatureVector.Factory<SparseByteVector,java.lang.Number>- Returns:
- Restriction class
-
-