Class WeightedTable<T>
- java.lang.Object
-
- org.spongepowered.api.util.weighted.RandomObjectTable<T>
-
- org.spongepowered.api.util.weighted.WeightedTable<T>
-
- Type Parameters:
T
- The entry type
- All Implemented Interfaces:
Iterable<TableEntry<T>>
,Collection<TableEntry<T>>
- Direct Known Subclasses:
UnmodifiableWeightedTable
public class WeightedTable<T> extends RandomObjectTable<T>
A table of weighted entry, each entry is given a weight, the higher the weight the more likely the chance that the entry is chosen. Each roll will only return a single entries value.
-
-
Field Summary
-
Fields inherited from class org.spongepowered.api.util.weighted.RandomObjectTable
entries
-
-
Constructor Summary
Constructors Constructor Description WeightedTable()
Creates a newWeightedTable
with a default roll count of1
.WeightedTable(int rolls)
Creates a newWeightedTable
with the provided number ofrolls
.WeightedTable(VariableAmount rolls)
Creates a newWeightedTable
with the providedVariableAmount
for the amount of rolls and variance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(TableEntry<T> entry)
boolean
add(T object, double weight)
Adds the given object to the table with the given weight.boolean
addAll(Collection<? extends TableEntry<T>> c)
void
clear()
boolean
equals(Object o)
List<T>
get(Random rand)
Performs a number of rolls according to the number of rolls defined byRandomObjectTable.rolls()
and returns items from the table for each roll.int
hashCode()
Iterator<TableEntry<T>>
iterator()
protected void
recalculateWeight()
Recalculates the total weight of all entries in this table.boolean
remove(Object entry)
boolean
removeAll(Collection<?> c)
boolean
removeObject(Object entry)
Removes the first instance of an entry in this table which is aWeightedObject
entry and contains the given object.boolean
retainAll(Collection<?> c)
String
toString()
-
Methods inherited from class org.spongepowered.api.util.weighted.RandomObjectTable
contains, containsAll, containsAllObjects, containsObject, entries, isEmpty, rolls, setRolls, setRolls, size, toArray, toArray
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, spliterator, stream
-
-
-
-
Constructor Detail
-
WeightedTable
public WeightedTable()
Creates a newWeightedTable
with a default roll count of1
.
-
WeightedTable
public WeightedTable(int rolls)
Creates a newWeightedTable
with the provided number ofrolls
.- Parameters:
rolls
- The rolls for variance
-
WeightedTable
public WeightedTable(VariableAmount rolls)
Creates a newWeightedTable
with the providedVariableAmount
for the amount of rolls and variance.- Parameters:
rolls
- The rolls for variance
-
-
Method Detail
-
add
public boolean add(TableEntry<T> entry)
- Specified by:
add
in interfaceCollection<T>
- Overrides:
add
in classRandomObjectTable<T>
-
add
public boolean add(T object, double weight)
Description copied from class:RandomObjectTable
Adds the given object to the table with the given weight.- Overrides:
add
in classRandomObjectTable<T>
- Parameters:
object
- The new objectweight
- The weight of the object- Returns:
- If the object was successfully added
-
addAll
public boolean addAll(Collection<? extends TableEntry<T>> c)
- Specified by:
addAll
in interfaceCollection<T>
- Overrides:
addAll
in classRandomObjectTable<T>
-
remove
public boolean remove(Object entry)
- Specified by:
remove
in interfaceCollection<T>
- Overrides:
remove
in classRandomObjectTable<T>
-
removeObject
public boolean removeObject(Object entry)
Description copied from class:RandomObjectTable
Removes the first instance of an entry in this table which is aWeightedObject
entry and contains the given object.- Overrides:
removeObject
in classRandomObjectTable<T>
- Parameters:
entry
- The object to remove- Returns:
- If the table was changed as a result
-
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAll
in interfaceCollection<T>
- Overrides:
removeAll
in classRandomObjectTable<T>
-
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAll
in interfaceCollection<T>
- Overrides:
retainAll
in classRandomObjectTable<T>
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection<T>
- Overrides:
clear
in classRandomObjectTable<T>
-
recalculateWeight
protected void recalculateWeight()
Recalculates the total weight of all entries in this table.
-
get
public List<T> get(Random rand)
Description copied from class:RandomObjectTable
Performs a number of rolls according to the number of rolls defined byRandomObjectTable.rolls()
and returns items from the table for each roll.- Specified by:
get
in classRandomObjectTable<T>
- Parameters:
rand
- The random object to use- Returns:
- The returned items, may be empty but not null
-
iterator
public Iterator<TableEntry<T>> iterator()
- Specified by:
iterator
in interfaceCollection<T>
- Specified by:
iterator
in interfaceIterable<T>
- Overrides:
iterator
in classRandomObjectTable<T>
-
equals
public boolean equals(Object o)
- Specified by:
equals
in interfaceCollection<T>
- Overrides:
equals
in classObject
-
hashCode
public int hashCode()
- Specified by:
hashCode
in interfaceCollection<T>
- Overrides:
hashCode
in classObject
-
-