Package org.opt4j.genotype
Class IntegerMapGenotype<K>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<Integer>
org.opt4j.genotype.IntegerGenotype
org.opt4j.genotype.IntegerMapGenotype<K>
- Type Parameters:
K
- the type of keys
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<Integer>
,Collection<Integer>
,List<Integer>
,RandomAccess
,Genotype
,ListGenotype<Integer>
,MapGenotype<K,
Integer>
- See Also:
-
Field Summary
Fields inherited from class org.opt4j.genotype.IntegerGenotype
bounds
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
ConstructorDescriptionIntegerMapGenotype
(List<K> list, int lowerBound, int upperBound) Constructs aIntegerMapGenotype
with fixed bounds.IntegerMapGenotype
(List<K> list, Bounds<Integer> bounds) Constructs aIntegerMapGenotype
. -
Method Summary
Modifier and TypeMethodDescriptionboolean
containsKey
(K key) Returnstrue
if the key is contained.int
getIndexOf
(K key) Returns the index of the key.getKeys()
Return all keys.Returns the value for the specified key.void
Initialize this genotype with random values based on the size of thelist
.void
Not supported.<G extends Genotype>
GConstructs a new (empty) instance of thisGenotype
.void
Sets the value for the specified key.toString()
Methods inherited from class org.opt4j.genotype.IntegerGenotype
getLowerBound, getUpperBound
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
Methods inherited from class java.util.AbstractCollection
containsAll
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
Field Details
-
list
-
-
Constructor Details
-
IntegerMapGenotype
Constructs aIntegerMapGenotype
.- Parameters:
list
- the list of keysbounds
- the lower and upper bounds
-
IntegerMapGenotype
Constructs aIntegerMapGenotype
with fixed bounds.- Parameters:
list
- the list of keyslowerBound
- the lower boundupperBound
- the upper bound
-
-
Method Details
-
init
Initialize this genotype with random values based on the size of thelist
.- Parameters:
random
- the random number generator
-
init
Not supported. Useinit(Random)
instead.- Overrides:
init
in classIntegerGenotype
- Parameters:
random
- the random number generatorn
- the number of elements in the resulting genotype- See Also:
-
containsKey
Description copied from interface:MapGenotype
Returnstrue
if the key is contained.- Specified by:
containsKey
in interfaceMapGenotype<K,
Integer> - Parameters:
key
- the key- Returns:
true
if the key is contained
-
getValue
Description copied from interface:MapGenotype
Returns the value for the specified key.- Specified by:
getValue
in interfaceMapGenotype<K,
Integer> - Parameters:
key
- the key- Returns:
- the value
- See Also:
-
setValue
Description copied from interface:MapGenotype
Sets the value for the specified key.- Specified by:
setValue
in interfaceMapGenotype<K,
Integer> - Parameters:
key
- the keyvalue
- the value- See Also:
-
newInstance
Description copied from interface:Genotype
Constructs a new (empty) instance of thisGenotype
.- Specified by:
newInstance
in interfaceGenotype
- Overrides:
newInstance
in classIntegerGenotype
- Type Parameters:
G
- the type of genotype for an implicit cast- Returns:
- new instance of the genotype
-
toString
- Overrides:
toString
in classAbstractCollection<Integer>
-
getIndexOf
Description copied from interface:MapGenotype
Returns the index of the key.- Specified by:
getIndexOf
in interfaceMapGenotype<K,
Integer> - Parameters:
key
- the key- Returns:
- the index
-
getKeys
Description copied from interface:MapGenotype
Return all keys.- Specified by:
getKeys
in interfaceMapGenotype<K,
Integer> - Returns:
- all keys
-