Class MetastoreTableItem


  • public class MetastoreTableItem
    extends java.lang.Object
    Identify an item in a metastore table.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getKey()
      Get the key of the table item.
      Versioned<Value> getValue()
      Get the value of the item.
      void setKey​(java.lang.String key)
      Set the key of the item.
      void setValue​(Versioned<Value> value)
      Set the value of the item.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MetastoreTableItem

        public MetastoreTableItem​(java.lang.String key,
                                  Versioned<Value> value)
    • Method Detail

      • getKey

        public java.lang.String getKey()
        Get the key of the table item.
        Returns:
        key of table item.
      • setKey

        public void setKey​(java.lang.String key)
        Set the key of the item.
        Parameters:
        key - Key
      • getValue

        public Versioned<Value> getValue()
        Get the value of the item.
        Returns:
        value of the item.
      • setValue

        public void setValue​(Versioned<Value> value)
        Set the value of the item.
        Parameters:
        value - of the item.