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