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:
java.lang.Iterable<TableEntry<T>>,java.util.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 newWeightedTablewith a default roll count of1.WeightedTable(int rolls)Creates a newWeightedTablewith the provided number ofrolls.WeightedTable(VariableAmount rolls)Creates a newWeightedTablewith the providedVariableAmountfor the amount of rolls and variance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(TableEntry<T> entry)booleanadd(T object, double weight)Adds the given object to the table with the given weight.booleanaddAll(java.util.Collection<? extends TableEntry<T>> c)voidclear()booleanequals(java.lang.Object o)java.util.List<T>get(java.util.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.inthashCode()java.util.Iterator<TableEntry<T>>iterator()protected voidrecalculateWeight()Recalculates the total weight of all entries in this table.booleanremove(java.lang.Object entry)booleanremoveAll(java.util.Collection<?> c)booleanremoveObject(java.lang.Object entry)Removes the first instance of an entry in this table which is aWeightedObjectentry and contains the given object.booleanretainAll(java.util.Collection<?> c)java.lang.StringtoString()-
Methods inherited from class org.spongepowered.api.util.weighted.RandomObjectTable
contains, containsAll, containsAllObjects, containsObject, entries, isEmpty, rolls, setRolls, setRolls, size, toArray, toArray
-
-
-
-
Constructor Detail
-
WeightedTable
public WeightedTable()
Creates a newWeightedTablewith a default roll count of1.
-
WeightedTable
public WeightedTable(int rolls)
Creates a newWeightedTablewith the provided number ofrolls.- Parameters:
rolls- The rolls for variance
-
WeightedTable
public WeightedTable(VariableAmount rolls)
Creates a newWeightedTablewith the providedVariableAmountfor the amount of rolls and variance.- Parameters:
rolls- The rolls for variance
-
-
Method Detail
-
add
public boolean add(TableEntry<T> entry)
- Specified by:
addin interfacejava.util.Collection<T>- Overrides:
addin classRandomObjectTable<T>
-
add
public boolean add(T object, double weight)
Description copied from class:RandomObjectTableAdds the given object to the table with the given weight.- Overrides:
addin classRandomObjectTable<T>- Parameters:
object- The new objectweight- The weight of the object- Returns:
- If the object was successfully added
-
addAll
public boolean addAll(java.util.Collection<? extends TableEntry<T>> c)
- Specified by:
addAllin interfacejava.util.Collection<T>- Overrides:
addAllin classRandomObjectTable<T>
-
remove
public boolean remove(java.lang.Object entry)
- Specified by:
removein interfacejava.util.Collection<T>- Overrides:
removein classRandomObjectTable<T>
-
removeObject
public boolean removeObject(java.lang.Object entry)
Description copied from class:RandomObjectTableRemoves the first instance of an entry in this table which is aWeightedObjectentry and contains the given object.- Overrides:
removeObjectin classRandomObjectTable<T>- Parameters:
entry- The object to remove- Returns:
- If the table was changed as a result
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
- Specified by:
removeAllin interfacejava.util.Collection<T>- Overrides:
removeAllin classRandomObjectTable<T>
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
- Specified by:
retainAllin interfacejava.util.Collection<T>- Overrides:
retainAllin classRandomObjectTable<T>
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection<T>- Overrides:
clearin classRandomObjectTable<T>
-
recalculateWeight
protected void recalculateWeight()
Recalculates the total weight of all entries in this table.
-
get
public java.util.List<T> get(java.util.Random rand)
Description copied from class:RandomObjectTablePerforms a number of rolls according to the number of rolls defined byRandomObjectTable.rolls()and returns items from the table for each roll.- Specified by:
getin classRandomObjectTable<T>- Parameters:
rand- The random object to use- Returns:
- The returned items, may be empty but not null
-
iterator
public java.util.Iterator<TableEntry<T>> iterator()
- Specified by:
iteratorin interfacejava.util.Collection<T>- Specified by:
iteratorin interfacejava.lang.Iterable<T>- Overrides:
iteratorin classRandomObjectTable<T>
-
equals
public boolean equals(java.lang.Object o)
- Specified by:
equalsin interfacejava.util.Collection<T>- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Specified by:
hashCodein interfacejava.util.Collection<T>- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-