Package elki.data
Class ByteVector.Factory
- java.lang.Object
-
- elki.data.ByteVector.Factory
-
- All Implemented Interfaces:
FeatureVector.Factory<ByteVector,java.lang.Number>,NumberVector.Factory<ByteVector>
- Enclosing class:
- ByteVector
public static class ByteVector.Factory extends java.lang.Object implements NumberVector.Factory<ByteVector>
Factory for Byte vectors.- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classByteVector.Factory.ParParameterization class.
-
Constructor Summary
Constructors Constructor Description Factory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteBufferSerializer<ByteVector>getDefaultSerializer()Get the default serializer for this type.java.lang.Class<? super ByteVector>getRestrictionClass()Get the objects type restriction.<A> ByteVectornewFeatureVector(A array, ArrayAdapter<? extends java.lang.Number,A> adapter)Returns a new FeatureVector of V for the given values.<A> ByteVectornewNumberVector(A array, NumberArrayAdapter<?,? super A> adapter)Instantiate from any number-array like object.-
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> ByteVector 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<ByteVector,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> ByteVector newNumberVector(A array, NumberArrayAdapter<?,? super A> adapter)
Description copied from interface:NumberVector.FactoryInstantiate from any number-array like object.- Specified by:
newNumberVectorin interfaceNumberVector.Factory<ByteVector>- Type Parameters:
A- Array type- Parameters:
array- Arrayadapter- Adapter- Returns:
- a new NumberVector of N for the given values.
-
getDefaultSerializer
public ByteBufferSerializer<ByteVector> 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<ByteVector,java.lang.Number>- Returns:
- Serializer
-
getRestrictionClass
public java.lang.Class<? super ByteVector> getRestrictionClass()
Description copied from interface:FeatureVector.FactoryGet the objects type restriction.- Specified by:
getRestrictionClassin interfaceFeatureVector.Factory<ByteVector,java.lang.Number>- Returns:
- Restriction class
-
-