Interface IWeightsInt

    • Method Detail

      • get

        int 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 int get​(Integer element)
        Deprecated.
        Please use get(int) instead to avoid un/boxing.
        Get the weight associated with the given element.
        Specified by:
        get in interface WeightsInt<Integer>
        Parameters:
        element - an element (edge/vertex).
        Returns:
        the weight associated with the given element.
      • getAsObj

        @Deprecated
        default Integer getAsObj​(int element)
        Deprecated.
        Please use get(int) instead to avoid un/boxing.
        Get the weight associated with the given id.
        Specified by:
        getAsObj in interface IWeights<Integer>
        Parameters:
        element - an id of edge/vertex
        Returns:
        the weight associated with the given id
      • getAsObj

        @Deprecated
        default Integer getAsObj​(Integer element)
        Deprecated.
        Please use get(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.

        Specified by:
        getAsObj in interface IWeights<Integer>
        Specified by:
        getAsObj in interface Weights<Integer,​Integer>
        Specified by:
        getAsObj in interface WeightsInt<Integer>
        Parameters:
        element - an element (edge/vertex)
        Returns:
        the weight associated with the given element
      • set

        void set​(int element,
                 int 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,
                         int weight)
        Deprecated.
        Please use set(int, int) instead to avoid un/boxing.
        Set the weight associated with the given element.
        Specified by:
        set in interface WeightsInt<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,
                              Integer weight)
        Deprecated.
        Please use set(int, int) instead to avoid un/boxing.
        Set the weight associated with the given id.
        Specified by:
        setAsObj in interface IWeights<Integer>
        Parameters:
        element - an id of edge/vertex
        weight - new weight that will be associated with the given id
      • setAsObj

        @Deprecated
        default void setAsObj​(Integer element,
                              Integer weight)
        Deprecated.
        Please use set(int, int) 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.

        Specified by:
        setAsObj in interface IWeights<Integer>
        Specified by:
        setAsObj in interface Weights<Integer,​Integer>
        Specified by:
        setAsObj in interface WeightsInt<Integer>
        Parameters:
        element - an element (edge/vertex)
        weight - new weight that will be associated with the given element
      • weightInt

        default int weightInt​(int element)
        Get the integer weight of an element.

        Implement the IWeightFunctionInt interface by using the weights of the container.

        Specified by:
        weightInt in interface IWeightFunctionInt
        Parameters:
        element - an element identifier
        Returns:
        the integer weight of the element