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

com.launchdarkly.sdk.server.MigrationOp Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
package com.launchdarkly.sdk.server;

/**
 * The type of migration operation.
 */
public enum MigrationOp {
  READ("read"),
  WRITE("write");

  private final String strValue;

  MigrationOp(final String strValue) {
    this.strValue = strValue;
  }

  @Override
  public String toString() {
    return strValue;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy