Class IndexedSense<V>

java.lang.Object
org.jgrapht.alg.util.Pair<V,Integer>
org.nlpub.watset.util.IndexedSense<V>
Type Parameters:
V - the type of value
All Implemented Interfaces:
Serializable, Supplier<V>, Sense<V>

public class IndexedSense<V> extends org.jgrapht.alg.util.Pair<V,Integer> implements Sense<V>
An integer sense identifier.
See Also:
  • Field Summary

    Fields inherited from class org.jgrapht.alg.util.Pair

    first, second
  • Constructor Summary

    Constructors
    Constructor
    Description
    IndexedSense(V value, Integer sense)
    Create a sense of an object.
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
     
    Get the sense identifier.
     

    Methods inherited from class org.jgrapht.alg.util.Pair

    equals, getFirst, getSecond, hasElement, hashCode, of, setFirst, setSecond

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • IndexedSense

      public IndexedSense(V value, Integer sense)
      Create a sense of an object.
      Parameters:
      value - the object
      sense - the sense identifier
  • Method Details

    • get

      public V get()
      Specified by:
      get in interface Supplier<V>
    • getSense

      public Integer getSense()
      Get the sense identifier.
      Returns:
      the sense identifier
    • toString

      public String toString()
      Overrides:
      toString in class org.jgrapht.alg.util.Pair<V,Integer>