Package com.jgalgo.graph
Interface IWeightsBool
-
public interface IWeightsBool extends IWeights<Boolean>, WeightsBool<Integer>
Specific weights ofboolean
for int graphs.- Author:
- Barak Ugav
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description boolean
get(int element)
Get the weight associated with the given element.default boolean
get(Integer element)
Deprecated.default Boolean
getAsObj(int element)
Deprecated.default Boolean
getAsObj(Integer element)
Deprecated.void
set(int element, boolean weight)
Set the weight associated with the given element.default void
set(Integer element, boolean weight)
Deprecated.default void
setAsObj(int element, Boolean weight)
Deprecated.default void
setAsObj(Integer element, Boolean weight)
Deprecated.-
Methods inherited from interface com.jgalgo.graph.WeightsBool
defaultWeight, defaultWeightAsObj
-
-
-
-
Method Detail
-
get
boolean 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 boolean get(Integer element)
Deprecated.Description copied from interface:WeightsBool
Get the weight associated with the given element.- Specified by:
get
in interfaceWeightsBool<Integer>
- Parameters:
element
- an element (edge/vertex).- Returns:
- the weight associated with the given element.
-
getAsObj
@Deprecated default Boolean getAsObj(int element)
Deprecated.Description copied from interface:IWeights
Get the weight associated with the given id.
-
set
void set(int element, boolean 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, boolean weight)
Deprecated.Description copied from interface:WeightsBool
Set the weight associated with the given element.- Specified by:
set
in interfaceWeightsBool<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, Boolean weight)
Deprecated.Description copied from interface:IWeights
Set the weight associated with the given id.
-
getAsObj
@Deprecated default Boolean getAsObj(Integer element)
Deprecated.Description copied from interface:Weights
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.
-
setAsObj
@Deprecated default void setAsObj(Integer element, Boolean weight)
Deprecated.Description copied from interface:Weights
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.
-
-