Package com.jgalgo.graph
Interface WeightsChar<K>
- Type Parameters:
K
- the elements (vertices/edges) type
- All Known Subinterfaces:
IWeightsChar
Specific weights of
char
.- Author:
- Barak Ugav
-
Method Summary
Modifier and TypeMethodDescriptionchar
Get the default weight of this weights container.default Character
Deprecated.char
Get the weight associated with the given element.default Character
Deprecated.Please useget(Object)
instead to avoid un/boxing.void
Set the weight associated with the given element.default void
Deprecated.Please useset(Object, char)
instead to avoid un/boxing.
-
Method Details
-
get
Get the weight associated with the given element.- Parameters:
element
- an element (edge/vertex).- Returns:
- the weight associated with the given element.
-
getAsObj
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
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.Please useset(Object, char)
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
char 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, char)
.- Returns:
- the default weight of this weights container.
-
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,
Character> - Returns:
- the default weight of this weights container
-
defaultWeight()
instead to avoid un/boxing.