Schnittstelle IntDoublePair

Alle bekannten Implementierungsklassen:
IntDoubleImmutablePair, IntDoubleMutablePair

public interface IntDoublePair
Key Value Pair Interface that allows to reduce boxing/unboxing.
  • Felddetails

    • EMPTY

      static final IntDoublePair EMPTY
      Empty Reference for Immutable Pairs
  • Methodendetails

    • of

      static IntDoublePair of()
      Gibt zurück:
      empty Immutable Pair
    • ofKey

      static IntDoublePair ofKey(int key)
      Parameter:
      key - the key that should be in the pair
      Gibt zurück:
      Immutable Pair of Key
    • ofValue

      static IntDoublePair ofValue(double value)
      Parameter:
      value - the value that should be in the pair
      Gibt zurück:
      Immutable Pair of Value
    • of

      static IntDoublePair of(int key, double value)
      Parameter:
      key - the key that should be in the pair
      value - the value that should be in the pair
      Gibt zurück:
      Immutable Pair of key and value
    • of

      static IntDoublePair of(IntDoublePair pair)
      Parameter:
      pair - the Pair that should be immutably copied
      Gibt zurück:
      a Immutable Copy of the Provided Pair
    • mutable

      static IntDoublePair mutable()
      Gibt zurück:
      empty Mutable Pair
    • mutableKey

      static IntDoublePair mutableKey(int key)
      Parameter:
      key - the key that should be in the pair
      Gibt zurück:
      Mutable Pair of key
    • mutableValue

      static IntDoublePair mutableValue(double value)
      Parameter:
      value - the value that should be in the pair
      Gibt zurück:
      Mutable Pair of value
    • mutable

      static IntDoublePair mutable(int key, double value)
      Parameter:
      key - the key that should be in the pair
      value - the value that should be in the pair
      Gibt zurück:
      Mutable Pair of key and value
    • mutable

      static IntDoublePair mutable(IntDoublePair pair)
      Parameter:
      pair - the Pair that should be copied
      Gibt zurück:
      a Mutable Copy of the Provided Pair
    • setIntKey

      IntDoublePair setIntKey(int key)
      Sets the Key of the Pair.
      Parameter:
      key - the key that should be set.
      Gibt zurück:
      self or a new Pair instance with the new key.
    • getIntKey

      int getIntKey()
      Gibt zurück:
      the Key of the Pair
    • setDoubleValue

      IntDoublePair setDoubleValue(double value)
      Sets the Value of the Pair.
      Parameter:
      value - the value that should be set.
      Gibt zurück:
      self or a new Pair instance with the new value.
    • getDoubleValue

      double getDoubleValue()
      Gibt zurück:
      the Value of the Pair
    • set

      IntDoublePair set(int key, double value)
      Sets key and value of the Pair
      Parameter:
      key - the key that should be set.
      value - the value that should be set.
      Gibt zurück:
      self or a new Pair instance with the new key and value.
    • shallowCopy

      IntDoublePair shallowCopy()
      Clones the Pair if it is mutable.
      Gibt zurück:
      a New Mutable Instance if it is mutable