Package com.jgalgo.graph
Interface WeightsByte<K>
-
- All Superinterfaces:
Comparator<K>
,WeightFunction<K>
,WeightFunctionInt<K>
,Weights<K,Byte>
- All Known Subinterfaces:
IWeightsByte
public interface WeightsByte<K> extends Weights<K,Byte>, WeightFunctionInt<K>
Specific weights ofbyte
.- Author:
- Barak Ugav
-
-
Field Summary
-
Fields inherited from interface com.jgalgo.graph.WeightFunction
CardinalityWeightFunction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description byte
defaultWeight()
Get the default weight of this weights container.default Byte
defaultWeightAsObj()
Deprecated.Please usedefaultWeight()
instead to avoid un/boxing.byte
get(K element)
Get the weight associated with the given element.default Byte
getAsObj(K element)
Deprecated.Please useget(Object)
instead to avoid un/boxing.void
set(K element, byte weight)
Set the weight associated with the given element.default void
setAsObj(K element, Byte weight)
Deprecated.Please useset(Object, byte)
instead to avoid un/boxing.default int
weightInt(K element)
Get the integer weight of an element.-
Methods inherited from interface java.util.Comparator
equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
Methods inherited from interface com.jgalgo.graph.WeightFunctionInt
compare, weight, weightSum
-
-
-
-
Method Detail
-
get
byte get(K element)
Get the weight associated with the given element.- Parameters:
element
- an element (edge/vertex).- Returns:
- the weight associated with the given element.
-
getAsObj
@Deprecated default Byte getAsObj(K element)
Deprecated.Please useget(Object)
instead to avoid un/boxing.Get the weight associated with the given element.This method return the weight as an object, and should not be used when its known what type the weights are.
-
set
void set(K element, byte weight)
Set the weight associated with the given element.- Parameters:
element
- an element (edge/vertex).weight
- new weight that will be associated with the given element
-
setAsObj
@Deprecated default void setAsObj(K element, Byte weight)
Deprecated.Please useset(Object, byte)
instead to avoid un/boxing.Set the weight associated with the given element.This method accept the weight as an object, and should not be used when its known what type the weights are.
-
defaultWeight
byte defaultWeight()
Get the default weight of this weights container.The default weight is the weight associated with all elements that were not explicitly set using
set(Object, byte)
.- Returns:
- the default weight of this weights container.
-
defaultWeightAsObj
@Deprecated default Byte defaultWeightAsObj()
Deprecated.Please usedefaultWeight()
instead to avoid un/boxing.Get the default weight of this weights container.The default weight is the weight associated with all ids that were not explicitly set. This method return the default weight as an object, and should not be used when its known what type the weights are.
- Specified by:
defaultWeightAsObj
in interfaceWeights<K,Byte>
- Returns:
- the default weight of this weights container
-
weightInt
default int weightInt(K element)
Get the integer weight of an element.Implement the
WeightFunctionInt
interface by using the weights of the container.- Specified by:
weightInt
in interfaceWeightFunctionInt<K>
- Parameters:
element
- an element identifier- Returns:
- the weight of the element
-
-