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

io.getstream.core.KeepHistory Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.getstream.core;

public enum KeepHistory {
  YES(true),
  NO(false);

  private final boolean flag;

  KeepHistory(boolean flag) {
    this.flag = flag;
  }

  public boolean getFlag() {
    return flag;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy