Beispiel #1
0
  /** The source of the document (As a map). */
  @SuppressWarnings({"unchecked"})
  public Map<String, Object> sourceAsMap() throws ElasticsearchParseException {
    if (source == null) {
      return null;
    }
    if (sourceAsMap != null) {
      return sourceAsMap;
    }

    sourceAsMap = SourceLookup.sourceAsMap(source);
    return sourceAsMap;
  }