MCPcopy Create free account
hub / github.com/OpenTSDB/opentsdb / setNotes

Method setNotes

src/tree/TreeRule.java:705–710  ·  view source on GitHub ↗

@param notes Optional detailed notes about the rule

(String notes)

Source from the content-addressed store, hash-verified

703
704 /** @param notes Optional detailed notes about the rule */
705 public void setNotes(String notes) {
706 if (!this.notes.equals(notes)) {
707 changed.put("notes", true);
708 this.notes = notes;
709 }
710 }
711
712 /** @param regex_group_idx An optional index (start at 0) to use for regex
713 * group extraction. Must be a positive value. */

Calls 2

putMethod · 0.80
equalsMethod · 0.45