Package com.jgalgo.graph
Interface IWeightsShort
-
- All Superinterfaces:
Comparator<Integer>,IntComparator,IWeightFunction,IWeightFunctionInt,IWeights<Short>,WeightFunction<Integer>,WeightFunctionInt<Integer>,Weights<Integer,Short>,WeightsShort<Integer>
public interface IWeightsShort extends IWeights<Short>, WeightsShort<Integer>, IWeightFunctionInt
Specific weights ofshortfor int graphs.- Author:
- Barak Ugav
-
-
Field Summary
-
Fields inherited from interface com.jgalgo.graph.IWeightFunction
CardinalityWeightFunction
-
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 default intcompare(Integer e1, Integer e2)Deprecated.shortget(int element)Get the weight associated with the given element.default shortget(Integer element)Deprecated.Please useget(int)instead to avoid un/boxing.default ShortgetAsObj(int element)Deprecated.Please useget(int)instead to avoid un/boxing.default ShortgetAsObj(Integer element)Deprecated.Please useget(int)instead to avoid un/boxing.voidset(int element, short weight)Set the weight associated with the given element.default voidset(Integer element, short weight)Deprecated.Please useset(int, short)instead to avoid un/boxing.default voidsetAsObj(int element, Short weight)Deprecated.Please useset(int, short)instead to avoid un/boxing.default voidsetAsObj(Integer element, Short weight)Deprecated.Please useset(int, short)instead to avoid un/boxing.default intweightInt(int element)Get the integer weight of an element.default intweightInt(Integer element)Deprecated.-
Methods inherited from interface java.util.Comparator
equals, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntComparator
reversed, thenComparing, thenComparing
-
Methods inherited from interface com.jgalgo.graph.IWeightFunctionInt
compare, weight, weight, weightSum
-
Methods inherited from interface com.jgalgo.graph.WeightsShort
defaultWeight, defaultWeightAsObj
-
-
-
-
Method Detail
-
get
short get(int element)
Get the weight associated with the given element.- Parameters:
element- an element (edge/vertex.)- Returns:
- the weight associated with the given element.
-
get
@Deprecated default short get(Integer element)
Deprecated.Please useget(int)instead to avoid un/boxing.Get the weight associated with the given element.- Specified by:
getin interfaceWeightsShort<Integer>- Parameters:
element- an element (edge/vertex).- Returns:
- the weight associated with the given element.
-
getAsObj
@Deprecated default Short getAsObj(int element)
Deprecated.Please useget(int)instead to avoid un/boxing.Get the weight associated with the given id.
-
getAsObj
@Deprecated default Short getAsObj(Integer element)
Deprecated.Please useget(int)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(int element, short 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
-
set
@Deprecated default void set(Integer element, short weight)
Deprecated.Please useset(int, short)instead to avoid un/boxing.Set the weight associated with the given element.- Specified by:
setin interfaceWeightsShort<Integer>- Parameters:
element- an element (edge/vertex).weight- new weight that will be associated with the given element
-
setAsObj
@Deprecated default void setAsObj(int element, Short weight)
Deprecated.Please useset(int, short)instead to avoid un/boxing.Set the weight associated with the given id.
-
setAsObj
@Deprecated default void setAsObj(Integer element, Short weight)
Deprecated.Please useset(int, short)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.
-
weightInt
default int weightInt(int element)
Get the integer weight of an element.Implement the
IWeightFunctionIntinterface by using the weights of the container.- Specified by:
weightIntin interfaceIWeightFunctionInt- Parameters:
element- an element identifier- Returns:
- the integer weight of the element
-
weightInt
@Deprecated default int weightInt(Integer element)
Deprecated.Get the integer weight of an element.Implement the
WeightFunctionIntinterface by using the weights of the container.Implement the
WeightFunctionIntinterface by using the weights of the container.- Specified by:
weightIntin interfaceIWeightFunctionInt- Specified by:
weightIntin interfaceWeightFunctionInt<Integer>- Specified by:
weightIntin interfaceWeightsShort<Integer>- Parameters:
element- an element identifier- Returns:
- the weight of the element
-
compare
@Deprecated default int compare(Integer e1, Integer e2)
Deprecated.Description copied from interface:WeightFunctionCompare two elements by their weights.- Specified by:
comparein interfaceComparator<Integer>- Specified by:
comparein interfaceIntComparator- Specified by:
comparein interfaceIWeightFunction- Specified by:
comparein interfaceIWeightFunctionInt- Specified by:
comparein interfaceWeightFunction<Integer>- Specified by:
comparein interfaceWeightFunctionInt<Integer>
-
-