All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.ableron.Content Maven / Gradle / Ivy

There is a newer version: 1.11.0
Show newest version
package io.github.ableron;

public class Content {

  private String content;

  public Content(String content) {
    this.content = content;
  }

  public static Content of(String content) {
    return new Content(content);
  }

  public String get() {
    return content;
  }

  public synchronized void replace(String text, String replacement) {
    this.content = content.replace(text, replacement);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy