public int hashCode()

in zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/thrift/RemoteInterpreterContext.java [839:887]


  public int hashCode() {
    int hashCode = 1;

    hashCode = hashCode * 8191 + ((isSetNoteId()) ? 131071 : 524287);
    if (isSetNoteId())
      hashCode = hashCode * 8191 + noteId.hashCode();

    hashCode = hashCode * 8191 + ((isSetNoteName()) ? 131071 : 524287);
    if (isSetNoteName())
      hashCode = hashCode * 8191 + noteName.hashCode();

    hashCode = hashCode * 8191 + ((isSetParagraphId()) ? 131071 : 524287);
    if (isSetParagraphId())
      hashCode = hashCode * 8191 + paragraphId.hashCode();

    hashCode = hashCode * 8191 + ((isSetReplName()) ? 131071 : 524287);
    if (isSetReplName())
      hashCode = hashCode * 8191 + replName.hashCode();

    hashCode = hashCode * 8191 + ((isSetParagraphTitle()) ? 131071 : 524287);
    if (isSetParagraphTitle())
      hashCode = hashCode * 8191 + paragraphTitle.hashCode();

    hashCode = hashCode * 8191 + ((isSetParagraphText()) ? 131071 : 524287);
    if (isSetParagraphText())
      hashCode = hashCode * 8191 + paragraphText.hashCode();

    hashCode = hashCode * 8191 + ((isSetAuthenticationInfo()) ? 131071 : 524287);
    if (isSetAuthenticationInfo())
      hashCode = hashCode * 8191 + authenticationInfo.hashCode();

    hashCode = hashCode * 8191 + ((isSetConfig()) ? 131071 : 524287);
    if (isSetConfig())
      hashCode = hashCode * 8191 + config.hashCode();

    hashCode = hashCode * 8191 + ((isSetGui()) ? 131071 : 524287);
    if (isSetGui())
      hashCode = hashCode * 8191 + gui.hashCode();

    hashCode = hashCode * 8191 + ((isSetNoteGui()) ? 131071 : 524287);
    if (isSetNoteGui())
      hashCode = hashCode * 8191 + noteGui.hashCode();

    hashCode = hashCode * 8191 + ((isSetLocalProperties()) ? 131071 : 524287);
    if (isSetLocalProperties())
      hashCode = hashCode * 8191 + localProperties.hashCode();

    return hashCode;
  }