Class CaseSensitiveDocument

java.lang.Object
com.denodo.commons.Document
com.denodo.commons.CaseSensitiveDocument
All Implemented Interfaces:
Serializable

public class CaseSensitiveDocument extends Document
Represents a tuple of retrieved data. It is composed of fields in the form of pairs key:value. Fields key are case-sensiive.
See Also:
  • Constructor Details

    • CaseSensitiveDocument

      public CaseSensitiveDocument()
    • CaseSensitiveDocument

      public CaseSensitiveDocument(Document document)
  • Method Details

    • get

      public Object get(String key)
      Description copied from class: Document
      Document fields are case-insensitive. A new key is compared to existing keys by comparing newKey.toString().toUpperCase() to the uppercase values in the current KeySet..
      Overrides:
      get in class Document
    • put

      public Object put(String key, Object value)
      Description copied from class: Document
      Document fields are case-insensitive. As they are added to the Document, keys are converted to all uppercase.
      Overrides:
      put in class Document