/**
  * Return the types in string.
  *
  * @return the types
  */
 public String getTypes() {
   return this.isCoerceText()
       ? TYPE_COERCE_TEXT
       : ClipDataHelper.getTypeString(
           ClipDataHelper.getItemTypes(this.getRawContent().getItemAt(0)));
 }